Skip to content

Commit b5f2542

Browse files
committed
forget about uploading artifacts and signatures to github release
1 parent 8e8c440 commit b5f2542

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -86,20 +86,8 @@ jobs:
8686

8787
permissions:
8888
contents: write # IMPORTANT: mandatory for making GitHub Releases
89-
id-token: write # IMPORTANT: mandatory for sigstore
9089

9190
steps:
92-
- name: Download all the dists
93-
uses: actions/download-artifact@v4
94-
with:
95-
name: python-package-distributions
96-
path: dist/
97-
- name: Sign the dists with Sigstore
98-
uses: sigstore/gh-action-sigstore-python@main
99-
with:
100-
inputs: |
101-
./dist/*.tar.gz
102-
./dist/*.whl
10391
- name: Draft GitHub Release
10492
env:
10593
GITHUB_TOKEN: ${{ github.token }}
@@ -109,17 +97,6 @@ jobs:
10997
--repo '${{ github.repository }}' \
11098
--generate-notes \
11199
--draft
112-
- name: Upload artifact signatures to GitHub Release
113-
env:
114-
GITHUB_TOKEN: ${{ github.token }}
115-
# Upload to GitHub Release using the `gh` CLI.
116-
# `dist/` contains the built packages, and the
117-
# sigstore-produced signatures and certificates.
118-
run: |
119-
gh release upload \
120-
'${{ github.ref_name }}' \
121-
--repo '${{ github.repository }}' \
122-
dist/**
123100
124101
# Necessary for getting executable name, since it won't match the git ref
125102
# if we're releasing a branch build

0 commit comments

Comments
 (0)