v0.15.2 #14
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 to PyPI | |
| on: | |
| release: | |
| types: [published] | |
| permissions: | |
| contents: read | |
| jobs: | |
| main: | |
| name: Publish artifacts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up latest Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Install latest pip, build, twine | |
| run: | | |
| python -m pip install --upgrade --disable-pip-version-check pip | |
| python -m pip install --upgrade cython twine build wheel | |
| - name: Install dependencies | |
| run: sudo apt-get update | |
| - name: Install dependencies | |
| run: sudo apt-get install -y libsystemd-dev | |
| - name: Build wheel and source distributions | |
| run: python setup.py sdist | |
| - name: Upload to PyPI via Twine | |
| env: | |
| TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
| run: twine upload --verbose -u '__token__' dist/* |