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 ec779e0 commit bc39f56Copy full SHA for bc39f56
.github/workflows/release.yml
@@ -22,10 +22,10 @@ jobs:
22
run: |
23
python -m pip install --upgrade pip
24
pip install setuptools wheel twine
25
- - name: Build packages
26
- run: python setup.py sdist bdist_wheel
27
- - name: Publish to PyPi
28
- uses: pypa/gh-action-pypi-publish@master
29
- with:
30
- user: __token__
31
- password: ${{ secrets.PYPI_PASSWORD }}
+ - name: Build and publish
+ env:
+ TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
+ TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
+ run: |
+ python setup.py sdist bdist_wheel
+ twine upload dist/*
0 commit comments