release.yml 311 B

1234567891011
  1. name: Release landed
  2. on:
  3. release:
  4. types: [published]
  5. jobs:
  6. - name: Notify in Discord
  7. env:
  8. DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
  9. uses: Ilshidur/action-discord@master
  10. with:
  11. args: '${{ github.event.tag_name }} is out 🚀 ${{ github.event.url }}\n${{ github.event.body }}'