Skip to content

Commit 74e8adc

Browse files
authored
Merge pull request #139 from chaqchase/feat/enhancemenets
chore: simplify SHA256 checksum generation in release workflow by usi…
2 parents 0fe5293 + 8dd28c5 commit 74e8adc

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -226,11 +226,7 @@ jobs:
226226
227227
- name: Generate SHA256 checksums
228228
run: |
229-
cd artifacts
230-
for artifact in */*; do
231-
sha256sum "$artifact" >> ../SHA256SUMS
232-
done
233-
cd ..
229+
find artifacts -type f -print0 | sort -z | xargs -0 sha256sum > SHA256SUMS
234230
sha256sum themes.zip >> SHA256SUMS
235231
236232
- name: Create Release Notes

0 commit comments

Comments
 (0)