Skip to content

Commit

Permalink
run twine upload with token passed directly
Browse files Browse the repository at this point in the history
  • Loading branch information
noahbroyles committed Jan 8, 2023
1 parent 6f201c1 commit b8353ea
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/deploy-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,4 @@ jobs:
run: python setup.py sdist bdist_wheel

- name: Upload to PyPi
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
run: twine upload dist/*
run: twine upload dist/* --username __token__ --password ${{ secrets.TWINE_PASSWORD }}

0 comments on commit b8353ea

Please sign in to comment.