File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -83,31 +83,23 @@ jobs:
8383 uses : pypa/gh-action-pypi-publish@release/v1
8484
8585 github-release :
86- name : Sign distribution and upload to GitHub Release
86+ name : Upload distribution to GitHub Release
8787 needs :
8888 - publish-to-pypi
8989 runs-on : ubuntu-latest
9090 permissions :
9191 contents : write
92- id-token : write
9392 steps :
9493 - name : Download all the dists
9594 uses : actions/download-artifact@v4
9695 with :
9796 name : python-package-distributions
9897 path : dist/
9998
100- - name : Sign the dists with Sigstore
101- uses : sigstore/gh-action-sigstore-python@v3.0.0
102- with :
103- inputs : >-
104- ./dist/*.tar.gz
105- ./dist/*.whl
106-
107- - name : Upload artifact signatures to GitHub Release
99+ - name : Upload distributions to GitHub Release
108100 env :
109101 GITHUB_TOKEN : ${{ github.token }}
110102 run : >-
111103 gh release upload
112- '${{ github.ref_name }}' dist/**
104+ '${{ github.ref_name }}' dist/*
113105 --repo '${{ github.repository }}'
You can’t perform that action at this time.
0 commit comments