Updated game detection list with previously unrecognised games. Also … #88
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: Build AGILE | |
on: | |
push: | |
branches: master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
- name: Setup VS Dev Environment | |
uses: seanmiddleditch/gha-setup-vsdevenv@v4 | |
- name: Setup NuGet | |
uses: NuGet/[email protected] | |
- name: Restore Packages | |
run: nuget restore AGILE.sln | |
# Required to Build VS Installer Projects | |
- name: Disable Out of Process Building | |
run: .\DisableOutOfProcBuild.exe | |
working-directory: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\VSI\DisableOutOfProcBuild | |
- name: Build the application | |
run: DevEnv AGILE.sln /build Release | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
name: AGILE | |
path: "./AGILE-Installer/Release" |