Skip to content

Commit

Permalink
Fix msbuild command
Browse files Browse the repository at this point in the history
  • Loading branch information
bagusnl authored Oct 12, 2023
1 parent 39d3472 commit bea474b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ jobs:
- name: Build
run: |
msbuild CollapseLauncher "-property:Configuration=$env:Configuration;Platform=$env:Platform;PublishProfile=Publish-PreviewRelease"
dotnet build CollapseLauncher -c $env:Configuration -p:Platform=$env:Platform -f ${{ matrix.framework }}
dotnet build CollapseLauncher -p:DeployOnBuild=true -p:PublishProfile=Publish-PreviewRelease -c $env:Configuration -p:Platform=$env:Platform -f ${{ matrix.framework }} -p:PublishDir=".\preview-build\"
# - name: Upload Artifact (Debug)
# uses: actions/[email protected]
Expand All @@ -90,4 +89,4 @@ jobs:
if: ${{ matrix.configuration == 'Release' }}
with:
name: collapse_${{ matrix.platform }}-${{ matrix.configuration }}_${{ matrix.framework }}_${{ github.sha }}
path: ../CollapseLauncher-ReleaseRepo/preview-build/
path: ./preview-build/

0 comments on commit bea474b

Please sign in to comment.