mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-12-18 10:00: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_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
|
||||||
|
Loading…
Reference in New Issue
Block a user