notify-discord.yml 398 B

1234567891011121314151617
  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 test Discord message
  11. uses: Ilshidur/action-discord@master
  12. env:
  13. DISCORD_WEBHOOK: ${{ secrets.DISCORD_RELEASE_WEBHOOK }}
  14. with:
  15. message: "✅ Test réussi depuis GitHub Actions"