mirror of
https://github.com/Raymonf/whack.git
synced 2024-11-14 21:07:36 +01:00
50 lines
1.3 KiB
YAML
50 lines
1.3 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 the application to populate the obj folder with RuntimeIdentifiers
|
|
- name: Restore the application
|
|
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
|
|
env:
|
|
Configuration: ${{ matrix.configuration }}
|
|
|
|
# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
|
|
- 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 }}
|