We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a88aeee commit 8c805c4Copy full SHA for 8c805c4
.github/workflows/ci.yaml
@@ -78,6 +78,12 @@ jobs:
78
run: python -m pip install build
79
- name: Build a binary wheel and a source tarball
80
run: python -m build --sdist --wheel --outdir dist/ .
81
+ - name: Publish distribution to Test PyPI
82
+ if: ${{ ! startsWith(github.ref, 'refs/tags') }}
83
+ uses: pypa/gh-action-pypi-publish@release/v1
84
+ with:
85
+ password: ${{ secrets.TEST_PYPI_API_TOKEN }}
86
+ repository_url: https://test.pypi.org/legacy/
87
- name: Publish distribution to PyPI
88
if: startsWith(github.ref, 'refs/tags')
89
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments