Skip to content

Commit

Permalink
Switched to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
d87 committed May 17, 2021
1 parent 4ee9610 commit 5ab0b8f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 21 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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 }}
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;
if: 'contains( github.ref, ''beta'')'
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

0 comments on commit 5ab0b8f

Please sign in to comment.