wotlk release #79
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Notify | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
discord_announce: | |
name: Post a Discord Announcement | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install discordpy | |
run: pip3 install discord.py | |
- name: announce | |
run: python3 scripts/post_release.py $WEBHOOK_URL | |
env: | |
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }} |