Skip to content

Commit

Permalink
Merge pull request #19 from 4ARMED/fix_signing
Browse files Browse the repository at this point in the history
Fix signing of builds
  • Loading branch information
marcwickenden authored Oct 18, 2024
2 parents 44c20ce + c839bf2 commit 9d5f439
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,24 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Sign the dists with Sigstore
uses: sigstore/[email protected].0
uses: sigstore/[email protected].1
with:
inputs: >-
./dist/*.tar.gz
./dist/*.whl
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: >-
gh release create
'${{ github.ref_name }}'
--repo '${{ github.repository }}'
--notes ""
- name: Upload artifact signatures to GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
Expand Down

0 comments on commit 9d5f439

Please sign in to comment.