Skip to content

Commit 169c57e

Browse files
authored
Fix statement that creates coveralls-checksums.txt (#166)
Fixes issue we had with initial release of `v0.6.15` by removing pathnames from all files before creating checksums for them.
1 parent 0e1399f commit 169c57e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ jobs:
221221
cp -r artifacts/coveralls-linux-binaries/* release/
222222
find artifacts/ -type f -exec cp \{} release/ \;
223223
mv release/coveralls.exe release/coveralls-windows.exe
224-
sha256sum release/* > release/coveralls-checksums.txt
224+
(cd release && sha256sum * > coveralls-checksums.txt)
225225
226226
- name: List files in release directory (debug)
227227
run: |

0 commit comments

Comments
 (0)