From 6937f755348221ad17463719839c822b4e0cea94 Mon Sep 17 00:00:00 2001 From: Vivek Singh Date: Sun, 27 Jun 2021 11:12:52 +0530 Subject: [PATCH] feat: add sha256sums for kind binaries - Add sha256sum file for kind binaries build as a part of release process --- hack/release/build/cross.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hack/release/build/cross.sh b/hack/release/build/cross.sh index cab2f3707b..ed901c19c8 100755 --- a/hack/release/build/cross.sh +++ b/hack/release/build/cross.sh @@ -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 \ No newline at end of file