From 74b9a908b4983ebf622e6db1d490defdc3c2878c Mon Sep 17 00:00:00 2001 From: Ray Date: Sat, 17 Dec 2022 23:00:36 -0500 Subject: [PATCH] Make it build, for real this time --- .github/workflows/WTT.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/WTT.yml b/.github/workflows/WTT.yml index 3f6dfb8..f1817e2 100644 --- a/.github/workflows/WTT.yml +++ b/.github/workflows/WTT.yml @@ -33,13 +33,19 @@ jobs: - name: Setup MSBuild.exe uses: microsoft/setup-msbuild@v1.0.2 - # Restore the application to populate the obj folder with RuntimeIdentifiers + # Restore WTT dependencies - 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 + # 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: