summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/notify-discord.yml
blob: fde8964109740f67814d3a73e86d7775f96afdcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: discord

on:
  release:
    types: [published] # fires only when a release is published

jobs:
  notify:
    runs-on: ubuntu-latest
    steps:
      - name: Send nicely-formatted embed to Discord
        uses: SethCohen/github-releases-to-discord@v1
        with:
          webhook_url: ${{ secrets.DISCORD_WEBHOOK }}