LEGOIslandRebuilder/.github/workflows/ci.yml

53 lines
1.1 KiB
YAML
Raw Normal View History

2022-04-01 21:18:44 -04:00
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 https://github.com/itsmattkc/MSVC600
- name: Build
2022-04-01 21:20:29 -04:00
shell: cmd
2022-04-01 21:18:44 -04:00
run: |
call MSVC600/VC98/Bin/vcvars32.bat
2022-04-18 23:21:36 -04:00
msdev Rebuilder.dsw /make
2022-04-01 21:18:44 -04:00
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.2.1
with:
path:
2022-04-18 23:21:36 -04:00
Rebuilder/Release/Rebuilder.exe
2022-04-01 21:18:44 -04:00
- name: Upload to Releases
shell: bash
if: github.event_name == 'push'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TRAVIS_REPO_SLUG: itsmattkc/LEGOIslandRebuilder
TRAVIS_COMMIT: ${{ github.sha }}
run: |
curl -fLOSs --retry 2 --retry-delay 60 https://github.com/probonopd/uploadtool/raw/master/upload.sh
2022-04-18 23:21:36 -04:00
./upload.sh Rebuilder/Release/Rebuilder.exe