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 35d3203 commit a9c5137
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 @@ -109,7 +109,8 @@ jobs:
run: |
mv preloader-${{ env.VERSION }}-windows-amd64 artifacts
mv artifacts/preloader-${{ env.VERSION }}-windows-amd64 .
zip -r preloader-${{ env.VERSION }}-windows-amd64.zip preloader-${{ env.VERSION }}-windows-amd64/*
cd preloader-${{ env.VERSION }}-windows-amd64
zip -r preloader-${{ env.VERSION }}-windows-amd64.zip *
echo "ZIP_SHA256=$(sha256sum preloader-${{ env.VERSION }}-windows-amd64.zip | cut -d ' ' -f 1)" >> $GITHUB_ENV
echo "DLL_SHA256=$(sha256sum preloader-${{ env.VERSION }}-windows-amd64/bin/PreLoader.dll | cut -d ' ' -f 1)" >> $GITHUB_ENV
echo "PDB_SHA256=$(sha256sum preloader-${{ env.VERSION }}-windows-amd64/bin/PreLoader.pdb | cut -d ' ' -f 1)" >> $GITHUB_ENV
Expand Down

0 comments on commit a9c5137

Please sign in to comment.