From 269c0f2b000b3dd15854f676c88953dbcc0a2cf2 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Fri, 28 Jun 2024 14:49:25 +0200 Subject: [PATCH] .github: generate checksum files also for latest build Signed-off-by: Joachim Wiberg --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2a5a5506..f15401ae 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -120,6 +120,12 @@ jobs: pattern: "artifact-*" merge-multiple: true + - name: Create checksums ... + run: | + for file in *.tar.gz; do + sha256sum $file > $file.sha256 + done + - uses: ncipollo/release-action@v1 with: allowUpdates: true @@ -129,7 +135,7 @@ jobs: prerelease: true tag: "latest" token: ${{ secrets.GITHUB_TOKEN }} - artifacts: "*.tar.gz" + artifacts: "*.tar.gz*" - name: Summary run: |