For some reason CHAT_MSG_SYSTEM returns secrets
#158
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: Package Retail | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - '*' | |
| - '!**-classic' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: packager | |
| steps: | |
| - name: Checkout addon | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run luacheck | |
| uses: BigWigsMods/actions/luacheck@master | |
| with: | |
| args: -q | |
| - name: Package Retail | |
| uses: BigWigsMods/packager@master | |
| env: | |
| CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
| WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }} | |
| GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} |