blob: c9032c301eee61b316022743962372e7f3c122fe (
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 }}
|