Skip to content

Commit

Permalink
Updated publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nick committed Nov 16, 2023
1 parent bbe5cfa commit 960256f
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 @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
env:
PYPIRC: ${{ secrets.PYPIRC }}

PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Use Python 3.10
Expand All @@ -22,6 +22,6 @@ jobs:
python -m pip install --user --upgrade wheel
python -m pip install --user --upgrade twine
python setup.py sdist bdist_wheel
python -m twine upload dist/*
python -m twine upload dist/* -u __token__ -p $PYPI_TOKEN

0 comments on commit 960256f

Please sign in to comment.