Skip to content

Commit 622f828

Browse files
Merge pull request #1332 from wking/release-sha256sum
hack/release: Compute release.sha256(.sig)
2 parents f413087 + 650760f commit 622f828

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

hack/release.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,8 @@ do
1818
OUTPUT="bin/openshift-install-${GOOS}-${GOARCH}"
1919
GOOS="${GOOS}" GOARCH="${GOARCH}" OUTPUT="${OUTPUT}" SKIP_GENERATION=y ./build.sh
2020
done
21-
(cd ../bin && sha256sum openshift-install-*)
21+
(
22+
cd ../bin
23+
sha256sum openshift-install-* >release.sha256
24+
gpg --output release.sha256.sig --detach-sig release.sha256
25+
)

0 commit comments

Comments
 (0)