Skip to content

Commit

Permalink
Merge pull request #554 from jansule/add-discord
Browse files Browse the repository at this point in the history
ci: add discord notification on release
  • Loading branch information
jansule authored Jun 19, 2024
2 parents 23dd18a + b11041a commit b4b28b7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/notify-discord.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Discord notification

on:
release:
types: [published]

jobs:
discord-notification:
runs-on: ubuntu-latest
steps:
- name: Discord notification 📯
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
uses: Ilshidur/[email protected]
with:
args: '${{ github.event.repository.name }} [${{ github.event.release.tag_name }}](${{ github.event.release.html_url }}) has been released. 🚀'

0 comments on commit b4b28b7

Please sign in to comment.