Skip to content

Commit 4550b12

Browse files
committed
Add: SHA256 checksum verification step for Windows builds
1 parent 4287773 commit 4550b12

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/CI.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,10 @@ jobs:
8181
- name: Print checksums
8282
shell: cmd
8383
run: |
84-
for %f in (dist\*.whl) do (
85-
echo Checksum for %f:
86-
CertUtil -hashfile %f SHA256
84+
for %%f in (dist\*.whl) do (
85+
echo =====================================
86+
echo Checksum for %%f:
87+
CertUtil -hashfile %%f SHA256
8788
)
8889
- name: Upload wheels
8990
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)