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 https://github.com/docker/compose/issues/9388

Signed-off-by: MaxPeal <30347730+MaxPeal@users.noreply.github.com>
This commit is contained in:
MaxPeal 2022-04-14 06:14:41 +02:00 committed by Nicolas De loof
parent 0dffd5ba9f
commit 5d809a2e89
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ jobs:
run: make GIT_TAG=${{ github.event.inputs.tag }} -f builder.Makefile cross run: make GIT_TAG=${{ github.event.inputs.tag }} -f builder.Makefile cross
- name: Compute checksums - name: Compute checksums
run: cd bin; for f in *; do shasum --algorithm 256 $f > $f.sha256; done run: cd bin; for f in *; do shasum --binary --algorithm 256 $f | tee -a checksums.txt > $f.sha256; done
- name: License - name: License
run: cp packaging/* bin/ run: cp packaging/* bin/