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>
release-2.13
Matt Farina 7 years ago
parent ccf1d7bc4b
commit e0c0759665
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