Display the checksums in CI

When Helm is packaging up the bundles it generates the checksums
but does not display them. Having them here will aide in the
generation of release notes and provide another source
listing them.

Signed-off-by: Matt Farina <matt@mattfarina.com>
pull/5319/head
Matt Farina 7 years ago
parent 9f964c11da
commit 63d262e5ec
No known key found for this signature in database
GPG Key ID: 9436E80BFBA46909

@ -48,6 +48,7 @@ dist:
checksum:
for f in _dist/*.{gz,zip} ; do \
shasum -a 256 "$${f}" | awk '{print $$1}' > "$${f}.sha256" ; \
echo -n "Checksum: " && cat $${f}.sha256 ; \
done
.PHONY: check-docker

Loading…
Cancel
Save