From 031282a8de0e42289bf42a173e0b4e1e6b02241a Mon Sep 17 00:00:00 2001 From: Richard Hillmann Date: Wed, 14 Aug 2024 15:03:40 +0200 Subject: [PATCH] Generate checksum for artifacts releases --- .github/workflows/build-all.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 754ba23f..1b453323 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -715,6 +715,8 @@ jobs: Commits between \`$PREVIOUS_REV\` and \`$CURRENT_REV\`: END git -C "pdfium" log origin/${PREVIOUS_REV}.. --pretty=format:'* [%s](https://pdfium.googlesource.com/pdfium/+/%H)' >> RELEASE.md + - name: Generate artifacts checksums + run: sha256sum pdfium-*.tgz > pdfium-sha256sum.txt - name: Publish Release uses: ncipollo/release-action@v1 with: @@ -723,4 +725,4 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} name: PDFium ${{ github.event.inputs.version }} tag: ${{ github.event.inputs.branch }} - artifacts: "pdfium-*.tgz" + artifacts: "pdfium-*.tgz,pdfium-sha256sum.txt"