Skip to content
This repository has been archived by the owner on Apr 16, 2023. It is now read-only.

Commit

Permalink
Update dotnet-desktop.yml
Browse files Browse the repository at this point in the history
Fixed project publish output path
  • Loading branch information
Bert-Proesmans authored May 2, 2021
1 parent eb94902 commit 91d0c35
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ jobs:
env:
Project_Path: SC-Buddy\SC-Buddy.csproj
Test_Project_Path: SC-Buddy.Tests\SC-Buddy.Tests.csproj
Project_Publish_Path: SC-Buddy\Publish


steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -86,7 +85,7 @@ jobs:

# Create the app package by building and packaging the Windows Application Packaging project
- name: Create the app package
run: msbuild $env:Project_Path /p:Configuration=$env:Configuration /t:Publish /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true /p:OutputPath=$env:Project_Publish_Path
run: msbuild $env:Project_Path /p:Configuration=$env:Configuration /t:Publish /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true /p:OutputPath="..\bin\\"
env:
Configuration: ${{ matrix.configuration }}

Expand All @@ -95,4 +94,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: Selfcontained executable
path: ${{ env.Project_Publish_Path }}
path: bin\publish

0 comments on commit 91d0c35

Please sign in to comment.