Skip to content

Commit

Permalink
Fix statement that creates coveralls-checksums.txt (#166)
Browse files Browse the repository at this point in the history
Fixes issue we had with initial release of `v0.6.15` by removing pathnames from all files before creating checksums for them.
  • Loading branch information
afinetooth authored Oct 2, 2024
1 parent 0e1399f commit 169c57e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ jobs:
cp -r artifacts/coveralls-linux-binaries/* release/
find artifacts/ -type f -exec cp \{} release/ \;
mv release/coveralls.exe release/coveralls-windows.exe
sha256sum release/* > release/coveralls-checksums.txt
(cd release && sha256sum * > coveralls-checksums.txt)
- name: List files in release directory (debug)
run: |
Expand Down

0 comments on commit 169c57e

Please sign in to comment.