From 5d809a2e89063f2f2e842741192e79031acf595b Mon Sep 17 00:00:00 2001 From: MaxPeal <30347730+MaxPeal@users.noreply.github.com> Date: Thu, 14 Apr 2022 06:14:41 +0200 Subject: [PATCH] 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> --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6f43c96c5..8ec95d81f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -36,7 +36,7 @@ jobs: run: make GIT_TAG=${{ github.event.inputs.tag }} -f builder.Makefile cross - 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 run: cp packaging/* bin/