(chore): Add texture to AddOn menu (Cata) #51
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: curseforge packager | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- dragon | ||
- tww-beta | ||
tags: | ||
- "*" | ||
- "!**-alpha**" | ||
- "!**-beta**" | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 200 | ||
- name: Install and run Luacheck | ||
uses: nebularg/actions-luacheck@v1 | ||
with: | ||
args: "--no-color -q" | ||
annotate: warning | ||
- name: Generate Changelog | ||
if: github.ref_type == 'tag' | ||
run: .github/workflows/generate_changelog.sh | ||
- name: Create Package | ||
uses: BigWigsMods/packager@v2 | ||
if: github.ref_type == 'tag' | ||
env: | ||
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} | ||
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} | ||
CF_API_KEY: ${{ secrets.CF_API_KEY }} | ||
WOWI_API_TOKEN: ${{ WOWI_API_TOKEN }} | ||
Check failure on line 40 in .github/workflows/bigwigs_pkg.yml GitHub Actions / curseforge packagerInvalid workflow file
|