Skip to content

Commit e15bd8c

Browse files
committed
fix: release workflow
1 parent 41fad0b commit e15bd8c

1 file changed

Lines changed: 3 additions & 11 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff 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 }}'

0 commit comments

Comments
 (0)