Classic and DF toc updates #29
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: Build addon zip | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
name: packager | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 # get the source tree | |
# Copied from DynamicBoxer's itself inspired from | |
# from https://github.com/WeakAuras/WeakAuras2/blob/master/.github/workflows/build.yml | |
# should probably be a docker so a lot of this is cached/created once | |
- name: Install and run Luacheck | |
run: | | |
sudo apt-get install luarocks | |
luarocks install --local luacheck 0.23.0 | |
exec /home/runner/.luarocks/bin/luacheck NeatMinimap/ --no-color --config ./NeatMinimap/.luacheckrc -q | |
- name: Get the packager | |
run: | | |
curl -s https://raw.githubusercontent.com/mooreatv/packager/v2m/release.sh > ./release.sh | |
chmod 755 ./release.sh | |
- name: Create Multitoc Package | |
run: ./release.sh -m pkgmeta.yaml | |
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 }} |