Skip to content

Commit 5d809a2

Browse files
MaxPealndeloof
authored andcommitted
create also a checksums.txt file, add --binary
create also a checksums.txt file and switch shasum to --binary, to Fix problems with the verification on different OS systems fixes docker#9388 Signed-off-by: MaxPeal <[email protected]>
1 parent 0dffd5b commit 5d809a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: make GIT_TAG=${{ github.event.inputs.tag }} -f builder.Makefile cross
3737

3838
- name: Compute checksums
39-
run: cd bin; for f in *; do shasum --algorithm 256 $f > $f.sha256; done
39+
run: cd bin; for f in *; do shasum --binary --algorithm 256 $f | tee -a checksums.txt > $f.sha256; done
4040

4141
- name: License
4242
run: cp packaging/* bin/

0 commit comments

Comments
 (0)