Bump pypa/gh-action-pypi-publish in /.github/workflows #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PyPI release | |
| on: [push] | |
| jobs: | |
| pypi: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| - name: Install dependencies | |
| run: python -m pip install --upgrade setuptools wheel twine qrcode kivy | |
| - name: Build | |
| run: | | |
| python setup.py sdist bdist_wheel | |
| twine check dist/* | |
| - name: Publish package | |
| if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
| uses: pypa/gh-action-pypi-publish@v1.13.0 | |
| with: | |
| verbose: true | |
| user: __token__ | |
| password: ${{ secrets.pypi_password }} |