From bab99bd94570663a687fcc2ca1beea35c87b3f4c Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Wed, 22 Dec 2021 19:24:54 +0000 Subject: [PATCH] Log checksums for release distribution files Logs will be removed. PyPI will calculate and record checksums. --- .github/workflows/release-files.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release-files.yml b/.github/workflows/release-files.yml index 49ab8ad7..4ecc2aab 100644 --- a/.github/workflows/release-files.yml +++ b/.github/workflows/release-files.yml @@ -39,6 +39,10 @@ jobs: run: > twine check dist/* + - name: Calculate checksums for distribution files + run: > + sha256sum dist/* + - name: Add distribution files to release run: > gh release upload ${{ github.ref_name }} dist/*