Skip to content

Commit

Permalink
feat: add PYPI_TOKEN
Browse files Browse the repository at this point in the history
  • Loading branch information
linsamtw committed Jan 15, 2024
1 parent b180db7 commit ae4c1c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
run: echo "CI_COMMIT_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
CI_COMMIT_TAG=${GITHUB_REF#refs/*/} pip wheel ./ --no-deps -w wheelhouse/
twine upload wheelhouse/*.whl

0 comments on commit ae4c1c0

Please sign in to comment.