Skip to content

Commit

Permalink
Moar automation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanpmartell committed Jul 27, 2024
1 parent e65edb6 commit 9c61514
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ jobs:

# 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 /p:Platform=$env.Platform
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration /p:Platform=$env:Platform
env:
Configuration: ${{ matrix.configuration }}
Platform: ${{ matrix.platform }}

# Create the app package by building and packaging the Windows Application Packaging project
- name: Create the app package
run: dotnet publish $env:Solution_Name -c $env:Configuration /p:Platform=$env.Platform /p:Version=${{ steps.tag_version.outputs.new_version }} /p:AssemblyVersion=${{ steps.tag_version.outputs.new_version }}
run: dotnet publish $env:Solution_Name -c $env:Configuration /p:Platform=$env:Platform /p:Version=${{ steps.tag_version.outputs.new_version }} /p:AssemblyVersion=${{ steps.tag_version.outputs.new_version }}
env:
Configuration: ${{ matrix.configuration }}
Platform: ${{ matrix.platform }}
Expand Down

0 comments on commit 9c61514

Please sign in to comment.