Update talent data for Mage based on the latest Titan patch (#6132) #1646
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "*" | |
| - "!**-alpha**" | |
| - "!**-beta**" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Hack around https://github.com/actions/checkout/issues/290 | |
| run: | | |
| git fetch --tags --force | |
| - name: Install and run Luacheck | |
| uses: nebularg/actions-luacheck@v1 | |
| with: | |
| args: "--no-color -q" | |
| annotate: warning | |
| - name: Update CurseForge Translations | |
| run: ./update_translations.sh | |
| env: | |
| CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
| - name: Generate Changelog | |
| run: ./generate_changelog.sh | |
| - name: Update Build Date | |
| run: sed -i "s/@build-time@/`date +%Y%m%d%H%M%S`/" WeakAuras/Init.lua | |
| - name: Flag Non-Experimental Build | |
| run: | | |
| sed -i \ | |
| -e "s/--@experimental@/--\[=====\[@experimental@/" \ | |
| -e "s/--@end-experimental@/--@end-experimental@\]=====\]/" WeakAuras/Init.lua | |
| - name: Create Package | |
| uses: BigWigsMods/packager@v2 | |
| env: | |
| CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
| GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} | |
| WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }} | |
| WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} | |
| - name: Send Status to Discord | |
| uses: nebularg/actions-discord-webhook@v1 | |
| with: | |
| webhook_url: ${{ secrets.WEBHOOK_URL }} | |
| status: ${{ job.status }} | |
| if: failure() |