We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbe5cfa commit 960256fCopy full SHA for 960256f
.github/workflows/publish.yml
@@ -10,7 +10,7 @@ jobs:
10
runs-on: ubuntu-latest
11
env:
12
PYPIRC: ${{ secrets.PYPIRC }}
13
-
+ PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
14
steps:
15
- uses: actions/checkout@v4
16
- name: Use Python 3.10
@@ -22,6 +22,6 @@ jobs:
22
python -m pip install --user --upgrade wheel
23
python -m pip install --user --upgrade twine
24
python setup.py sdist bdist_wheel
25
- python -m twine upload dist/*
+ python -m twine upload dist/* -u __token__ -p $PYPI_TOKEN
26
27
0 commit comments