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 9a28481 commit dfb12daCopy full SHA for dfb12da
.github/workflows/python-publish.yml
@@ -28,9 +28,15 @@ jobs:
28
python3 setup.py build
29
pytest
30
31
- - name: Publish to PyPI
+ - name: Publish to Test PyPI
32
run: |
33
python3 setup.py sdist bdist_wheel &> package_setup.log
34
curl --connect-timeout 10 -kI https://test.pypi.org
35
twine upload -u ${{ secrets.USER }} -p ${{ secrets.PASS }} 'dist/*'
36
+
37
+ - name: Publish to PyPI
38
+ run: |
39
+ python3 setup.py sdist bdist_wheel &> package_setup.log
40
+ curl --connect-timeout 10 -kI https://test.pypi.org
41
+ twine upload -u ${{ secrets.USER }} -p ${{ secrets.PASS }} -r testpypi 'dist/*'
42
0 commit comments