Skip to content

Commit

Permalink
Update python-publish.yml
Browse files Browse the repository at this point in the history
don't use environment variables for user/pass
  • Loading branch information
gamcil authored May 22, 2024
1 parent c95454f commit 80d9740
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ jobs:
python -m pip install --upgrade pip
pip install build wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python -m build
twine upload dist/*
twine upload dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}

0 comments on commit 80d9740

Please sign in to comment.