Skip to content

Commit

Permalink
Change deploy release workflow to prod pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
dataPuzzler committed Dec 30, 2020
1 parent 9c03fbc commit 929a06b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/python-py-pi-release.yml
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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

0 comments on commit 929a06b

Please sign in to comment.