patch: properly fix exit crash bug #63
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: CI | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'README.md' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install Visual C++ 6.0 | |
run: | | |
git clone --depth 1 https://github.com/itsmattkc/MSVC600 | |
- name: Build | |
shell: cmd | |
run: | | |
call MSVC600/VC98/Bin/vcvars32.bat | |
msdev Rebuilder.dsw /make | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v2.2.1 | |
with: | |
path: | |
Rebuilder/Release/Rebuilder.exe | |
- name: Upload to Releases | |
shell: bash | |
if: github.event_name == 'push' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
TRAVIS_REPO_SLUG: isledecomp/LEGOIslandRebuilder | |
TRAVIS_COMMIT: ${{ github.sha }} | |
run: | | |
curl -fLOSs --retry 2 --retry-delay 60 https://github.com/probonopd/uploadtool/raw/master/upload.sh | |
./upload.sh Rebuilder/Release/Rebuilder.exe |