aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml5
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: |