From 95f158efd6fcf6ba2fd603f7e91b916bd8da77e4 Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Mon, 18 Sep 2023 19:25:32 +0100 Subject: [PATCH] Generate Sigstore signatures for release --- .github/workflows/release-files.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-files.yml b/.github/workflows/release-files.yml index 5ac9b385..737fca8c 100644 --- a/.github/workflows/release-files.yml +++ b/.github/workflows/release-files.yml @@ -38,13 +38,18 @@ jobs: run: > python3 -m hatchling build + - name: Generate Sigstore signatures + uses: sigstore/gh-action-sigstore-python@9310933b45d7dfc2fe40c1d701ac114548c28d31 + with: + inputs: dist/* + - name: Check distribution files run: > - twine check dist/* + twine check dist/*.{tar.gz,whl} - name: Calculate checksums for distribution files run: > - sha256sum dist/* + sha256sum dist/*.{tar.gz,whl} - name: Add distribution files to release run: >