Skip to content

Commit

Permalink
Fix twine upload in release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
sunqm committed Oct 17, 2023
1 parent cbef8b4 commit 2f4578d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
ls mac-wheels
- name: Publish to PyPI
run: |
pip install twine
pip3 install twine
export TWINE_USERNAME=__token__
export TWINE_PASSWORD="${{ secrets.PYPI_API_TOKEN }}"
twine upload --verbose mac-wheels/*
Expand All @@ -141,7 +141,7 @@ jobs:
ls mac-wheels
- name: Publish to PyPI
run: |
pip install twine
pip3 install twine
export TWINE_USERNAME=__token__
export TWINE_PASSWORD="${{ secrets.PYPI_API_TOKEN }}"
twine upload --verbose mac-wheels/*
Expand Down

0 comments on commit 2f4578d

Please sign in to comment.