Updating python publish script to use access tokens

This commit is contained in:
NandaScott 2022-07-25 22:59:43 -04:00
parent dda04ac0fa
commit ef858dbb8d
1 changed files with 16 additions and 17 deletions

View File

@ -10,7 +10,6 @@ on:
jobs: jobs:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -25,8 +24,8 @@ jobs:
pip install setuptools wheel twine pip install setuptools wheel twine
- name: Build and publish - name: Build and publish
env: env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_TOKEN }}
run: | run: |
python setup.py sdist bdist_wheel python setup.py sdist bdist_wheel
twine upload dist/* twine upload dist/*