Fix alt middle click not wiping logs, regression from 7197f26939a30b6… #284
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 addon | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - '*' | |
| paths-ignore: | |
| - '.github/**' | |
| 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 | |
| uses: BigWigsMods/packager@master | |
| env: | |
| CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
| WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} | |
| GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} |