Skip to content

Commit d54bc3c

Browse files
committed
fix: correct SHA256 checksums generation in CI
1 parent abf4a26 commit d54bc3c

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,7 @@ jobs:
121121
- name: Create SHA256 checksums
122122
run: |
123123
cd build/bin
124-
for dir in */; do
125-
cd "$dir"
126-
for f in *; do
127-
sha256sum "$f" >> ../../checksums.sha256
128-
done
129-
cd ..
130-
done
124+
sha256sum */mask-ctl-* > checksums.sha256
131125
cat checksums.sha256
132126
133127
- name: Create Release

0 commit comments

Comments
 (0)