Skip to content

Commit

Permalink
Fix release archive checksum
Browse files Browse the repository at this point in the history
  • Loading branch information
melegiul committed Nov 8, 2024
1 parent 874fe19 commit 3e894fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: tar czf ${ARCHIVE} -C ${{ github.workspace }} -T ${{ github.workspace }}/.tarcontent
working-directory: ${{ env.ARCHIVE_PATH }}
- name: "Create hash files"
run: sha512sum ${ARCHIVE} | awk '{ print $1 }' > "${ARCHIVE}.sha512"
run: sha512sum ${ARCHIVE} > "${ARCHIVE}.sha512"
working-directory: ${{ env.ARCHIVE_PATH }}
- name: "Create release"
run: gh release create ${GITHUB_REF_NAME} ${{ env.ARCHIVE_PATH }}/${ARCHIVE} ${{ env.ARCHIVE_PATH }}/${ARCHIVE}.sha512 --generate-notes --verify-tag
Expand Down

0 comments on commit 3e894fb

Please sign in to comment.