Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Store checksums of released cored binaries #705

Merged
merged 14 commits into from
Nov 15, 2023
Merged
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -61,3 +63,4 @@ jobs:
files: |
cored-linux-amd64
cored-linux-arm64
checksums.txt
Loading