Skip to content

Commit

Permalink
feat: add sha256 check sums
Browse files Browse the repository at this point in the history
  • Loading branch information
matzegebbe committed Apr 5, 2022
1 parent 3ec1410 commit 406f3aa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ jobs:
go build ./cmd/kluctl
go test -c ./e2e
mv kluctl kluctl-linux-amd64
sha256sum -z kluctl-linux-amd64 > kluctl-linux-amd64.sha256
mv e2e.test e2e.test-linux-amd64
- name: Build kluctl (darwin)
run: |
Expand All @@ -98,6 +99,7 @@ jobs:
go build ./cmd/kluctl
go test -c ./e2e
mv kluctl kluctl-darwin-amd64
sha256sum -z kluctl-darwin-amd64 > kluctl-darwin-amd64.sha256
mv e2e.test e2e.test-darwin-amd64
- name: Build kluctl (windows)
run: |
Expand All @@ -107,6 +109,7 @@ jobs:
go build ./cmd/kluctl
go test -c ./e2e
mv kluctl.exe kluctl-windows-amd64.exe
sha256sum -z kluctl-windows-amd64.exe > kluctl-windows-amd64.exe.sha256
mv e2e.test.exe e2e.test-windows-amd64.exe
- name: Upload dist artifact
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -328,3 +331,4 @@ jobs:
dist/kluctl-linux-*
dist/kluctl-darwin-*
dist/kluctl-windows-*
dist/*.sha256

0 comments on commit 406f3aa

Please sign in to comment.