Skip to content

Commit

Permalink
update pythonpublish: add publishing to real pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
simberaj authored Dec 11, 2019
1 parent ecf5d44 commit 61c0e65
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools wheel twine
python setup.py sdist bdist_wheel
- name: Build and publish
- name: Build and publish to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.test_pypi_apitoken }}
repository_url: https://test.pypi.org/legacy/
- name: Build and publish
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.pypi_apitoken }}

0 comments on commit 61c0e65

Please sign in to comment.