Merge pull request #61 from Jj0YzL5nvJ/up2023

CI/CD: Add BLAKE2 hashfile
This commit is contained in:
Richard Goedeken 2023-06-11 12:19:02 -07:00 committed by GitHub
commit 0a4e30f560
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -229,9 +229,11 @@ jobs:
tigerdeep -lz ${BIN} >> ../${BIN:0:20}.tiger.txt
sha256sum ${BIN} >> ../${BIN:0:20}.sha256.txt
sha512sum ${BIN} >> ../${BIN:0:20}.sha512.txt
b2sum ${BIN} >> ../${BIN:0:20}.blake2.txt
done
mv ../*.tiger.txt .
mv ../*.sha*.txt .
mv ../*.blake2.txt .
echo ""
echo "TIGER:"
cat *.tiger.txt
@ -242,6 +244,9 @@ jobs:
echo "SHA512:"
cat *.sha512.txt
echo ""
echo "BLAKE2:"
cat *.blake2.txt
echo ""
git tag -f nightly-build
git push -f origin nightly-build
- name: Nightly-build