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 210f06e commit ec779e0Copy full SHA for ec779e0
.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 and publish
26
- env:
27
- TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
28
- TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
29
- run: |
30
- python setup.py sdist bdist_wheel
31
- twine upload dist/*
+ - name: Build packages
+ run: python setup.py sdist bdist_wheel
+ - name: Publish to PyPi
+ uses: pypa/gh-action-pypi-publish@master
+ with:
+ user: __token__
+ password: ${{ secrets.PYPI_PASSWORD }}
0 commit comments