Skip to content

Commit cb2db86

Browse files
committed
Add: SHA256 checksum output for built wheels in CI
1 parent 333dd20 commit cb2db86

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/CI.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ jobs:
4141
echo "Checking $file"
4242
python -m zipfile -t "$file" || { echo "Invalid wheel: $file"; exit 1; }
4343
done
44+
- name: Print checksums
45+
run: sha256sum dist/*.whl
4446
- name: Upload wheels
4547
uses: actions/upload-artifact@v4
4648
with:
@@ -71,6 +73,8 @@ jobs:
7173
echo "Checking $file"
7274
python -m zipfile -t "$file" || { echo "Invalid wheel: $file"; exit 1; }
7375
done
76+
- name: Print checksums
77+
run: sha256sum dist/*.whl
7478
- name: Upload wheels
7579
uses: actions/upload-artifact@v4
7680
with:
@@ -101,6 +105,8 @@ jobs:
101105
echo "Checking $file"
102106
python -m zipfile -t "$file" || { echo "Invalid wheel: $file"; exit 1; }
103107
done
108+
- name: Print checksums
109+
run: sha256sum dist/*.whl
104110
- name: Upload wheels
105111
uses: actions/upload-artifact@v4
106112
with:

0 commit comments

Comments
 (0)