Highlight Magic for Mages with Advanced Warding rune in SoD #387
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: Release | |
on: | |
push: | |
tags: | |
- '[0-9]*' | |
- 'v[0-9]*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
GITHUB_OAUTH: ${{ secrets.GH_OAUTH }} | |
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }} | |
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install and run Luacheck | |
run: | | |
sudo apt-get install luarocks | |
luarocks install --local luacheck | |
/home/runner/.luarocks/bin/luacheck . --no-color -q | |
- name: Create Package | |
run: curl -s https://raw.githubusercontent.com/BigWigsMods/packager/master/release.sh | bash; | |
if: '!contains( github.ref, ''beta'')' | |
- name: Create Pre-Release Package | |
run: curl -s https://raw.githubusercontent.com/BigWigsMods/packager/master/release.sh | bash -s -- -p 0 -w 0 -a 0; | |
if: 'contains( github.ref, ''beta'')' |