We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d943164 commit 748dfafCopy full SHA for 748dfaf
.github/workflows/release.yml
@@ -31,7 +31,7 @@ jobs:
31
32
publish-to-pypi:
33
name: >-
34
- Publish to PyPI
+ Publish new release to PyPI
35
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
36
needs:
37
- build
@@ -64,7 +64,7 @@ jobs:
64
id-token: write # IMPORTANT: mandatory for sigstore
65
66
steps:
67
- - name: Download all the dists
+ - name: Download artifacts
68
uses: actions/download-artifact@v4
69
with:
70
name: python-package-distributions
@@ -95,7 +95,7 @@ jobs:
95
--repo "$GITHUB_REPOSITORY"
96
97
publish-to-testpypi:
98
- name: Publish Python distribution to TestPyPI
+ name: Publish test build to TestPyPI
99
100
101
if: github.ref == 'refs/heads/main' # only publish to TestPyPI on merge to main
0 commit comments