We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44c20ce commit c839bf2Copy full SHA for c839bf2
.github/workflows/pypi.yaml
@@ -66,16 +66,24 @@ jobs:
66
67
steps:
68
- name: Download all the dists
69
- uses: actions/download-artifact@v3
+ uses: actions/download-artifact@v4
70
with:
71
name: python-package-distributions
72
path: dist/
73
- name: Sign the dists with Sigstore
74
- uses: sigstore/gh-action-sigstore-python@v2.1.0
+ uses: sigstore/gh-action-sigstore-python@v2.1.1
75
76
inputs: >-
77
./dist/*.tar.gz
78
./dist/*.whl
79
+ - name: Create GitHub Release
80
+ env:
81
+ GITHUB_TOKEN: ${{ github.token }}
82
+ run: >-
83
+ gh release create
84
+ '${{ github.ref_name }}'
85
+ --repo '${{ github.repository }}'
86
+ --notes ""
87
- name: Upload artifact signatures to GitHub Release
88
env:
89
GITHUB_TOKEN: ${{ github.token }}
0 commit comments