Skip to content

Commit

Permalink
check different checksum
Browse files Browse the repository at this point in the history
  • Loading branch information
aslak01 committed Jul 17, 2023
1 parent 315340b commit b02b4a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
run: |
deno compile --allow-read --allow-net --allow-env --allow-run --target aarch64-apple-darwin index.ts -o pg
# checksum=$(shasum -a 256 pg
checksum=$(sha256sum pg | cut -d' ' -f1)
tar -czvf pg.tar.gz pg
checksum=$(sha256sum pg.tar.gz | cut -d' ' -f1)
echo "checksum was" ${checksum}
echo "CHSUM=${checksum}" >> "$GITHUB_ENV"
tar -czvf pg.tar.gz pg
- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit b02b4a9

Please sign in to comment.