Skip to content

Commit 7107c0f

Browse files
committed
fix(ci): checksum only files, not directories
1 parent 2b778e4 commit 7107c0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
run: |
9292
cd artifacts
9393
find . -type f \( -name "*.tar.gz" -o -name "*.zip" \) -exec mv {} . \;
94-
sha256sum opencli-rs-* > SHA256SUMS.txt
94+
sha256sum *.tar.gz *.zip > SHA256SUMS.txt 2>/dev/null || true
9595
cat SHA256SUMS.txt
9696
9797
- name: Create GitHub Release

0 commit comments

Comments
 (0)