Skip to content

Commit

Permalink
fix for path in the build file
Browse files Browse the repository at this point in the history
  • Loading branch information
xChipseq authored Jan 31, 2025
1 parent fa418cb commit 598c12b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: Dropship.x86.Embedded.exe
path: bin/Release/net8.0/win-x86/publish/Dropship.exe
path: Dropship/bin/Release/net8.0/win-x86/publish/Dropship.exe
- name: Build for release x64.NET with DepotDownloader Embedded
run: dotnet publish -r win-x64 -c Release /p:PublishSingleFile=true /p:SelfContained=true /p:EnableCompressionInSingleFile=true /p:IncludeDepotDownloader=true
- uses: actions/upload-artifact@v4
with:
name: Dropship.x64.Embedded.exe
path: bin/Release/net8.0/win-x64/publish/Dropship.exe
path: Dropship/bin/Release/net8.0/win-x64/publish/Dropship.exe

# Ensure clean build for non-embedded version
- name: Clean up previous build artifacts
Expand All @@ -54,10 +54,10 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: Dropship.x86.exe
path: bin/Release/net8.0/win-x86/publish/Dropship.exe
path: Dropship/bin/Release/net8.0/win-x86/publish/Dropship.exe
- name: Build for release x64.NET with DepotDownloader Embedded
run: dotnet publish -r win-x64 -c Release /p:PublishSingleFile=true /p:SelfContained=true /p:EnableCompressionInSingleFile=true /p:IncludeDepotDownloader=false
- uses: actions/upload-artifact@v4
with:
name: Dropship.x64.exe
path: bin/Release/net8.0/win-x64/publish/Dropship.exe
path: Dropship/bin/Release/net8.0/win-x64/publish/Dropship.exe

0 comments on commit 598c12b

Please sign in to comment.