From 598c12b3cfd5fb84c53b051b7fb87eef29ee1d03 Mon Sep 17 00:00:00 2001 From: Chipseq <108542751+xChipseq@users.noreply.github.com> Date: Fri, 31 Jan 2025 16:59:32 +0100 Subject: [PATCH] fix for path in the build file --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 58594f6..85f1ab9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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