Skip to content

Commit

Permalink
Merge pull request #2336 from viveksyngh/add-sha-for-binaries
Browse files Browse the repository at this point in the history
feat: add sha256sums for kind binaries
  • Loading branch information
k8s-ci-robot authored Jun 29, 2021
2 parents c98531e + 6937f75 commit 5dbdf31
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions hack/release/build/cross.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,9 @@ export GOOS=linux GOARCH=arm64
export GOOS=linux GOARCH=ppc64le
EOF
)

# add sha256 for binaries
cd "${REPO_ROOT}"/bin
for f in kind-*; do
shasum -a 256 "$f" > "$f".sha256sum;
done

0 comments on commit 5dbdf31

Please sign in to comment.