diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94b2eb3de..ea0ea0f7f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,6 +42,7 @@ jobs: run: | ln crust/bin/.cache/cored/docker.amd64/bin/cored cored-linux-amd64 ln crust/bin/.cache/cored/docker.arm64/bin/cored cored-linux-arm64 + sha256sum cored-* > checksums.txt - name: Create release if: steps.check-tag.outputs.release == 'true' uses: softprops/action-gh-release@v1 @@ -51,6 +52,7 @@ jobs: files: | cored-linux-amd64 cored-linux-arm64 + checksums.txt - name: Create release candidate if: steps.check-tag.outputs.release_candidate == 'true' uses: softprops/action-gh-release@v1 @@ -61,3 +63,4 @@ jobs: files: | cored-linux-amd64 cored-linux-arm64 + checksums.txt