mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-12-18 01:50:17 +00:00
add checksumming for the wheels
This commit is contained in:
parent
2ab2d8e9df
commit
fd74d51008
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
@ -48,10 +48,18 @@ jobs:
|
||||
make build_wheel
|
||||
make build_pure_wheel
|
||||
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
|
||||
with:
|
||||
name: package
|
||||
path: dist/*.whl
|
||||
path: |
|
||||
dist/*.whl
|
||||
dist/*.sha256
|
||||
|
||||
# documentation:
|
||||
# needs: test
|
||||
@ -88,6 +96,7 @@ jobs:
|
||||
with:
|
||||
files: |
|
||||
.artifacts/package/**.whl
|
||||
.artifacts/package/**.sha256
|
||||
# .artifacts/documentation/latex/reticulumnetworkstack.pdf
|
||||
# .artifacts/documentation/epub/ReticulumNetworkStack.epub
|
||||
draft: true
|
||||
|
Loading…
Reference in New Issue
Block a user