Skip to content

Commit

Permalink
Fix publish in CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
maudetes committed Jul 11, 2022
1 parent f32fa8b commit b7134b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,12 @@ jobs:
steps:
- attach_workspace:
at: .
- run:
name: Install Twine
command: pip install twine
- deploy:
name: Publish on PyPI
command: twine upload --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" dist/*.whl
command: |
source venv/bin/activate
pip install twine
twine upload --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" dist/*.whl
github:
docker:
Expand Down

0 comments on commit b7134b4

Please sign in to comment.