diff --git a/.github/workflows/python-py-pi-release.yml b/.github/workflows/python-py-pi-release.yml index cacafea..7bb2a6b 100644 --- a/.github/workflows/python-py-pi-release.yml +++ b/.github/workflows/python-py-pi-release.yml @@ -1,5 +1,9 @@ # This workflows will upload a Python Package using Twine when a release is created # For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries +# Upload to testpypi: +# twine upload --repository testpypi dist/* +# Upload to prodpypi: +# twine upload dist/* name: Upload a new Realase of the Python Package @@ -32,5 +36,5 @@ jobs: TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python setup.py sdist bdist_wheel - twine upload --repository testpypi dist/* + twine upload dist/* echo 0.0.0 > VERSION