Skip to content

Commit

Permalink
ci: fix wrong zip path
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrBox committed Jan 17, 2024
1 parent a536338 commit 6f411e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ jobs:
run: |
mv peeditor-${{ env.VERSION }}-windows-amd64 artifacts
mv artifacts/peeditor-${{ env.VERSION }}-windows-amd64 .
zip -r peeditor-${{ env.VERSION }}-windows-amd64.zip peeditor-${{ env.VERSION }}-windows-amd64/*
cd peeditor-${{ env.VERSION }}-windows-amd64
zip -r peeditor-${{ env.VERSION }}-windows-amd64.zip *
echo "ZIP_SHA256=$(sha256sum peeditor-${{ env.VERSION }}-windows-amd64.zip | cut -d ' ' -f 1)" >> $GITHUB_ENV
echo "EXE_SHA256=$(sha256sum peeditor-${{ env.VERSION }}-windows-amd64/PeEditor.exe | cut -d ' ' -f 1)" >> $GITHUB_ENV
echo "PDB_SHA256=$(sha256sum peeditor-${{ env.VERSION }}-windows-amd64/PeEditor.pdb | cut -d ' ' -f 1)" >> $GITHUB_ENV
Expand Down

0 comments on commit 6f411e5

Please sign in to comment.