Skip to content

Commit

Permalink
ci: fixed checksum generation
Browse files Browse the repository at this point in the history
  • Loading branch information
akopachov committed Feb 19, 2024
1 parent 7ff6437 commit f55a051
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Generate checksum
run: |
cd build
find . -type f -maxdepth 1 -exec sha256sum {} \; > checksum.txt
find . -type f -maxdepth 1 -name '*.zip' -exec sha256sum {} \; > checksum.txt
- uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Generate checksum
run: |
cd release
find . -type f -maxdepth 2 -name 'checksum.txt' | xargs cat > checksum.txt
find . -type f -mindepth 1 -maxdepth 1 -name 'checksum.txt' | xargs cat > checksum.txt
- name: Upload build artifacts
uses: shogo82148/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Generate checksum
run: |
cd build
find . -type f -maxdepth 1 -exec sha256sum {} \; > checksum.txt
find . -type f -maxdepth 1 -name '*.zip' -exec sha256sum {} \; > checksum.txt
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit f55a051

Please sign in to comment.