1
0
mirror of https://github.com/Raymonf/whack.git synced 2024-11-12 04:10:46 +01:00

Make it build, for real this time

This commit is contained in:
Ray 2022-12-17 23:00:36 -05:00 committed by Raymonf
parent 9a907e01f5
commit 74b9a908b4
No known key found for this signature in database
GPG Key ID: 438459BF619B037A

View File

@ -33,13 +33,19 @@ jobs:
- name: Setup MSBuild.exe - name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2 uses: microsoft/setup-msbuild@v1.0.2
# Restore the application to populate the obj folder with RuntimeIdentifiers # Restore WTT dependencies
- name: Restore the application - name: Restore the application
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
env: env:
Configuration: ${{ matrix.configuration }} 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 - name: Upload build artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with: