Skip to content

Commit

Permalink
feat: remove public from checksum paths
Browse files Browse the repository at this point in the history
  • Loading branch information
f-hollow committed Jan 6, 2025
1 parent 626f9e8 commit d845106
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pr-build-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ jobs:

- name: Calculate checksums for website files
run: |
find public/ -type f -exec sha256sum {} + | awk '{print $2, $1}' | sort > checksums-ci.txt
cd public
find . -type f -exec sha256sum {} + | awk '{print $2, $1}' | sort > ../checksums-ci.txt
- name: Upload checksums to artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit d845106

Please sign in to comment.