Skip to content

Commit

Permalink
Merge pull request #12 from gyk4j/20231213-fix-path-ci
Browse files Browse the repository at this point in the history
Fix path in dotnet-desktop.yml
  • Loading branch information
gyk4j authored Dec 13, 2023
2 parents c7e760e + 97122be commit bc3b44b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
configuration: [Release]
runs-on: windows-2019
env:
Base_Directory: D:/a/wreck-net/wreck-net
Solution_Name: Wreck.sln
Configuration: Release
Wap_Project_Directory: bin
Expand All @@ -26,13 +27,13 @@ jobs:
uses: microsoft/setup-msbuild@v1.1

- name: Build solution
run: msbuild $env:Solution_Name -t:rebuild -property:Configuration=$env:Configuration
run: msbuild $env:Base_Directory\$env:Solution_Name -t:rebuild -property:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: wreck
path: ${{ env.Wap_Project_Directory }}\${{ env.Release }}
path: ${{ env.Base_Directory }}\${{ env.Wap_Project_Directory }}\${{ env.Release }}

0 comments on commit bc3b44b

Please sign in to comment.