0.1.87 #149
Workflow file for this run
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: Publish releases to PyPI | |
| on: | |
| release: | |
| types: [published, prereleased] | |
| jobs: | |
| build-and-publish: | |
| name: Builds and publishes releases to PyPI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Set up Python 3.9 | |
| uses: actions/[email protected] | |
| with: | |
| python-version: 3.9 | |
| - name: Install wheel | |
| run: >- | |
| pip install wheel | |
| - name: Build | |
| run: >- | |
| python3 setup.py sdist bdist_wheel | |
| - name: Publish release to PyPI | |
| uses: pypa/[email protected] | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.PYPI_TOKEN }} |