Skip to content

Commit

Permalink
ci: Fix upload.pypi.org url
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitabelonogov committed Dec 11, 2024
1 parent bf625fc commit fe8f7df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ inputs.upload_to_pypi && secrets.PYPI_APIKEY || secrets.PYPI_APIKEY_TEST }}
TWINE_REPOSITORY_URL: ${{ inputs.upload_to_pypi && 'https://upload.pypi.org/legacy/ ' || 'https://test.pypi.org/legacy/' }}
TWINE_REPOSITORY_URL: ${{ inputs.upload_to_pypi && 'https://upload.pypi.org/legacy/' || 'https://test.pypi.org/legacy/' }}
run: poetry run twine upload dist/*

- name: Get PyPI package details
Expand Down

0 comments on commit fe8f7df

Please sign in to comment.