1
0
mirror of https://github.com/Raymonf/whack.git synced 2024-11-14 12:57:36 +01:00
whack/.github/workflows/WTT.yml

56 lines
1.4 KiB
YAML
Raw Normal View History

2022-12-18 04:31:28 +01:00
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
2022-12-18 05:00:36 +01:00
# Restore WTT dependencies
2022-12-18 04:31:28 +01:00
- name: Restore the application
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}
2022-12-18 05:00:36 +01:00
# Build WTT
- name: Build the application
run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}
# Upload the built files
2022-12-18 04:31:28 +01:00
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: WTT Binaries - ${{ env.Configuration }}
2022-12-18 04:34:57 +01:00
path: ${{ env.WTT_Project_Directory }}\bin\${{ env.Configuration }}
2022-12-18 04:31:28 +01:00
env:
Configuration: ${{ matrix.configuration }}