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
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
if: ${{ matrix.linter-cache }}
with:
path: ~/.cache/golangci-lint
key: ${{ runner.os }}-linter-cache-2
key: ${{ runner.os }}-linter-cache-3
- name: Get Date
id: get-year-week
run: |
Expand Down
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