notify-discord.yml 516 B

123456789101112131415161718192021
  1. name: Notify Discord on Release
  2. on:
  3. release:
  4. types: [published]
  5. workflow_dispatch:
  6. jobs:
  7. discordNotification:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - name: Send Discord message
  11. uses: Ilshidur/action-discord@master
  12. env:
  13. DISCORD_WEBHOOK: ${{ secrets.DISCORD_RELEASE_WEBHOOK }}
  14. with:
  15. message: |
  16. 🚀 New release: **${{ github.event.release.name }}**
  17. ${{ github.event.release.html_url }}
  18. ${{ github.event.release.body }}