Skip to content

Commit

Permalink
gh action compress fix
Browse files Browse the repository at this point in the history
  • Loading branch information
s0t7x committed Jun 26, 2024
1 parent d8d63ce commit b7b2a50
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,20 @@ jobs:
- uses: ilammy/[email protected]
- 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:
Expand Down

0 comments on commit b7b2a50

Please sign in to comment.