Skip to content

Commit f11d32a

Browse files
fix(release): fix sha256sum brace expansion in SHA256SUMS
Shell brace expansion {tar.gz,zip} doesn't work with sha256sum. Changed to explicitly list both patterns separately.
1 parent 34f61d3 commit f11d32a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ jobs:
240240
cp artifacts/binaries-*/minisign.pub release/ 2>/dev/null || cp artifacts/ephemeral-keys/minisign.pub release/
241241
242242
cd release
243-
sha256sum "${BINARY_NAME}"-*.{tar.gz,zip} > SHA256SUMS 2>/dev/null || true
243+
sha256sum "${BINARY_NAME}"-*.tar.gz "${BINARY_NAME}"-*.zip > SHA256SUMS 2>/dev/null || true
244244
cd ..
245245
246246
ls -la release/

0 commit comments

Comments
 (0)