add checksumming for the wheels

This commit is contained in:
gretel 2024-12-10 22:08:31 +01:00
parent 2ab2d8e9df
commit fd74d51008

View File

@ -48,10 +48,18 @@ jobs:
make build_wheel make build_wheel
make build_pure_wheel make build_pure_wheel
make create_symlinks make create_symlinks
- name: Generate SHA256 checksums
run: |
cd dist
for file in *.whl; do
sha256sum "$file" > "${file}.sha256"
done
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v4
with: with:
name: package name: package
path: dist/*.whl path: |
dist/*.whl
dist/*.sha256
# documentation: # documentation:
# needs: test # needs: test
@ -88,6 +96,7 @@ jobs:
with: with:
files: | files: |
.artifacts/package/**.whl .artifacts/package/**.whl
.artifacts/package/**.sha256
# .artifacts/documentation/latex/reticulumnetworkstack.pdf # .artifacts/documentation/latex/reticulumnetworkstack.pdf
# .artifacts/documentation/epub/ReticulumNetworkStack.epub # .artifacts/documentation/epub/ReticulumNetworkStack.epub
draft: true draft: true