From b7b2a50569e015145b3b5fe4cf7952fc419d9d1e Mon Sep 17 00:00:00 2001 From: s0t7x Date: Wed, 26 Jun 2024 17:58:01 +0200 Subject: [PATCH] gh action compress fix --- .github/workflows/build.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fc1473b..0547d21 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,16 +12,20 @@ jobs: - uses: ilammy/msvc-dev-cmd@v1.4.1 - name: compile core dll run: | - MSBuild "shroudtopia\shroudtopia.sln" /t:Build /p:Configuration=Release /p:OutDir="." /p:Platform=x64 + MSBuild "shroudtopia\shroudtopia.sln" /t:Build /p:Configuration=Release /p:OutDir=".\" /p:Platform=x64 shell: cmd - name: compile proxy 'winmm.dll' run: | - MSBuild "winmm\winmm.sln" /t:Build /p:Configuration=Release /p:OutDir="." /p:Platform=x64 + MSBuild "winmm\winmm.sln" /t:Build /p:Configuration=Release /p:OutDir=".\" /p:Platform=x64 shell: cmd - name: compress binaries run: | - Compress-Archive -Path *.exe -Destination Shroudtopia.zip + Compress-Archive -Path *.exe -Destination .\Shroudtopia.zip shell: powershell + - name: check + run: | + dir + shell: cmd - name: upload executable uses: actions/upload-artifact@v2 with: