[pro] cmf for 132585 (for 132779) #112
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: TACTLib | |
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 | |
with: | |
dotnet-version: 9.0.x | |
- name: Restore project | |
run: dotnet restore TACTLib.sln --verbosity m -r win-x64 | |
- name: Build Release | |
run: dotnet publish -f net9.0 --configuration Release -r win-x64 --self-contained false -o dist/Release | |
- name: Upload Release | |
uses: actions/upload-artifact@v4 | |
with: | |
name: TACTLib-release | |
path: dist/Release | |
- name: Build Debug | |
run: dotnet publish -f net9.0 --configuration Debug -r win-x64 --self-contained false -o dist/Debug | |
- name: Upload Debug | |
uses: actions/upload-artifact@v4 | |
with: | |
name: TACTLib-debug | |
path: dist/Debug |