Skip to content

Commit

Permalink
fix generate_executables.yml
Browse files Browse the repository at this point in the history
use 7z on windows platform
  • Loading branch information
csc530 authored Aug 1, 2024
1 parent e8121d7 commit 45b151f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/generate_executables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,12 @@ jobs:
cd ./publish
if ($env:RUNNER_OS -eq "Windows") {
mv Resumer.exe resumer.exe
7z a ../${{ matrix.os }}_resumer_${{ env.tag }}.zip *
}
else {
mv Resumer resumer
zip -1g ../${{ matrix.os }}_resumer_${{ env.tag }}.zip *
}
zip -1g ../${{ matrix.os }}_resumer_${{ env.tag }}.zip *
cd ..
Expand Down

0 comments on commit 45b151f

Please sign in to comment.