fixed possible crash possibly caused by ghost timer #206
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: "Continuous Build" | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
continuous-build: | |
name: "Continuous Build" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v1 | |
- name: "Update Packages" | |
run: sudo apt update | |
- name: "Install Lua" | |
run: sudo apt install lua5.2 | |
- name: "Install luamin" | |
run: sudo npm install -g luamin | |
- name: "Combine" | |
run: make re | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
if: github.event_name != 'pull_request' | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest-build" | |
prerelease: true | |
title: "Development Build" | |
files: | | |
tfm_lua/*.tfm.lua.txt | |