diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-04-01 12:02:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-01 17:02:25 +0000 |
commit | e8032503b9517465b0e86d776fc1e60d8795d673 (patch) | |
tree | 5f3d6f5d6cc3ca12ad178885f2c9396bc7bdef13 | |
parent | 97362712a1f2b04e735bdf54f749ad99165a62fe (diff) |
[build] Print SHA sums to GHA logs (#9582)
Authored by: bashonly
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d773d5a1c..5285923e7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -467,8 +467,9 @@ jobs: - name: Make SHA2-SUMS files run: | cd ./artifact/ - sha256sum * > ../SHA2-256SUMS - sha512sum * > ../SHA2-512SUMS + # make sure SHA sums are also printed to stdout + sha256sum * | tee ../SHA2-256SUMS + sha512sum * | tee ../SHA2-512SUMS - name: Make Update spec run: | |