Skip to content

Commit

Permalink
Fix - set correctly the test pypi repository
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubno committed Jul 14, 2023
1 parent b624d43 commit 66d9512
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/package-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:

- name: Config Poetry
run: |
poetry config repositories.pypi https://test.pypi.org/legacy/ # TODO: Remove this line when we are ready to publish to PyPI
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
poetry config repositories.test-pypi https://test.pypi.org/legacy/ # TODO: Remove this line when we are ready to publish to PyPI
poetry config pypi-token.test-pypi ${{ secrets.PYPI_TOKEN }}
- name: Publish Package
run: poetry publish
run: poetry publish --repository test-pypi

0 comments on commit 66d9512

Please sign in to comment.