1
0
mirror of https://github.com/Raymonf/whack.git synced 2024-11-13 20:50:46 +01:00
whack/.github/workflows/WTT.yml
2022-12-18 14:18:24 -05:00

56 lines
1.4 KiB
YAML

name: WTT Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: windows-latest
env:
Solution_Name: WTT\WTT.sln
WTT_Project_Directory: WTT\WTT
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2
# Restore WTT dependencies
- name: Restore the application
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}
# Build WTT
- name: Build the application
run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}
# Upload the built files
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: WTT Binaries - ${{ env.Configuration }}
path: ${{ env.WTT_Project_Directory }}\bin\${{ env.Configuration }}
env:
Configuration: ${{ matrix.configuration }}