From da57a052e4b47f9b37715336177c08c186b28d59 Mon Sep 17 00:00:00 2001 From: Julien Vincent Date: Mon, 13 Nov 2023 19:48:56 +0000 Subject: [PATCH] Include a checksums.txt file in release artifacts --- .github/workflows/release.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1655e5a..e41cb7a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -77,6 +77,14 @@ jobs: name: kl-native-images path: bin + - name: Calculate checksums + runs: | + for file in bin/*; do + shasum -a 256 "$file" >> checksums.txt + done + + mv checksums.txt bin/checksums.txt + - uses: actions/setup-java@v2 with: distribution: 'temurin'