Skip to content

Commit 960256f

Browse files
committed
Updated publish workflow
1 parent bbe5cfa commit 960256f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
env:
1212
PYPIRC: ${{ secrets.PYPIRC }}
13-
13+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Use Python 3.10
@@ -22,6 +22,6 @@ jobs:
2222
python -m pip install --user --upgrade wheel
2323
python -m pip install --user --upgrade twine
2424
python setup.py sdist bdist_wheel
25-
python -m twine upload dist/*
25+
python -m twine upload dist/* -u __token__ -p $PYPI_TOKEN
2626
2727

0 commit comments

Comments
 (0)