Skip to content

Commit

Permalink
avoid recursive find and inclusion of sha256sum.txt file in shasum (r…
Browse files Browse the repository at this point in the history
  • Loading branch information
enrichman authored May 8, 2024
1 parent b289656 commit e201565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
cd dist/artifacts/$VERSION
ls -lR
# generate sha256sum file
find . -type f -printf '%P\0' | xargs -0 sha256sum > sha256sum.txt
find . -maxdepth 1 -type f ! -name sha256sum.txt -printf '%P\0' | xargs -0 sha256sum > sha256sum.txt
gh release upload $VERSION *.txt *.xz *.gz *.zip
- name: Docker Build
Expand Down

0 comments on commit e201565

Please sign in to comment.