Skip to content

Commit

Permalink
build: sign artifacts with sigstore
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed May 15, 2023
1 parent 610a56f commit b97e634
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/kit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,3 +241,27 @@ jobs:
with:
name: dist
path: dist/*.whl

sign:
name: "Sign artifacts"
needs:
- wheels
- sdist
- pypy
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: "Download artifacts"
uses: actions/download-artifact@v3
with:
name: dist

- name: "What did we get?"
run: |
ls -alR
- name: "Sign"
uses: sigstore/gh-action-sigstore-python@v1.2.3
with:
inputs: *

0 comments on commit b97e634

Please sign in to comment.