Merge pull request #357 from alejoe91/prepare_release #34
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: Release to PyPI | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install Tools | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install twine build | |
| - name: Package the code | |
| run: | | |
| # python -m build is backend-independent | |
| python -m build | |
| # test the new wheel | |
| pip install dist/probeinterface*.whl | |
| python -c "import probeinterface; print(probeinterface.__version__)" | |
| - name: Upload to PyPI | |
| env: | |
| STACKMANAGER_VERSION: ${{ github.event.release.tag_name }} | |
| TWINE_USERNAME: __token__ | |
| TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
| run: | | |
| twine upload dist/* |