From fd74d51008bb70df2f1dbd054f6689a16aa98e15 Mon Sep 17 00:00:00 2001 From: gretel Date: Tue, 10 Dec 2024 22:08:31 +0100 Subject: [PATCH] add checksumming for the wheels --- .github/workflows/build.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f656314..dce3393 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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