We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aed329b commit 1f43f48Copy full SHA for 1f43f48
1 file changed
.github/workflows/publish.yml
@@ -18,9 +18,11 @@ jobs:
18
python-version: 3.9
19
20
- name: Build and Upload
21
+ env:
22
+ PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
23
run: |
24
python -m venv venv
25
source venv/bin/activate
26
pip install --upgrade pip twine wheel
27
python setup.py sdist bdist_wheel
- twine upload dist/* --verbose --username __token__ --password ${{ secrets.PYPI_TOKEN }}
28
+ twine upload dist/* --username __token__ --password "$PYPI_TOKEN"
0 commit comments