Update Interface version (#23) #105
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] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install luarocks | |
run: sudo apt-get install luarocks | |
- name: Install luaunit | |
run: sudo luarocks install luaunit | |
- name: Test | |
run: lua5.1 Tests/Test.lua | |
- name: Package and release | |
uses: BigWigsMods/packager@v2 | |
env: | |
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} | |
CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }} | |
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} |