We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1e2af9 commit ed1ace3Copy full SHA for ed1ace3
.github/workflows/release-python.yml
@@ -34,15 +34,14 @@ jobs:
34
upload_test_pypi:
35
needs: [build_sdist]
36
runs-on: ubuntu-latest
37
- if: startsWith(github.ref, 'refs/tags/v')
38
steps:
39
- uses: actions/download-artifact@v4
40
with:
41
name: artifact
42
path: dist
43
44
- name: Publish package to TestPyPI
45
- uses: pypa/gh-action-pypi-publish@release-v1
+ uses: pypa/gh-action-pypi-publish:release-v1
46
47
user: __token__
48
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
@@ -66,7 +65,7 @@ jobs:
66
65
67
68
- name: Publish package to PyPI
69
70
if: steps.check-tag.outputs.match == 'true'
71
72
0 commit comments