Update for 2.16.0.2.138051 #113
This file contains hidden or 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: TankLib | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: 'recursive' | |
- name: Install .NET 9 | |
uses: actions/setup-dotnet@v4 | |
- name: Mutate Run Number | |
run: | | |
$num = (997+$($Env:GITHUB_RUN_NUMBER)) | |
echo "GITHUB_RUN_NUMBER_DELTA=$num" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append | |
- name: Restore project | |
run: dotnet restore OverwatchToolchain.sln --verbosity m -r win-x64 -p:TargetFramework=net9.0 | |
- name: Build Release | |
run: dotnet publish OverwatchToolchain.slnx -c Release -r win-x64 -o dist/Release --self-contained true | |
# --self-contained for https://github.com/dotnet/sdk/issues/29642 | |
- name: Upload Release | |
uses: actions/upload-artifact@v4 | |
with: | |
name: toolchain-release | |
path: dist/Release | |
- name: Build Debug | |
run: dotnet publish OverwatchToolchain.slnx -c Debug -r win-x64 -o dist/Debug --self-contained true | |
- name: Upload Debug | |
uses: actions/upload-artifact@v4 | |
with: | |
name: toolchain-debug | |
path: dist/Debug |