Merge pull request #45 from HumanBrainProject/cicd/publishViaTwine #7
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
| # adapted from https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/#workflow-definition | |
| name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI | |
| on: push | |
| jobs: | |
| # try to build in every push | |
| # if fails, we should check if things are broken | |
| build: | |
| name: Build distribution 📦 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| - name: Install pypa/build | |
| run: >- | |
| python3 -m | |
| pip install | |
| build | |
| --user | |
| - name: Build a binary wheel and a source tarball | |
| run: python3 -m build | |
| - name: Store the distribution packages | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: python-package-distributions | |
| path: dist/ | |
| # on tag, verify tag is {major}.{minor}.{bugfix} | |
| # to avoid pushing alpha/dev versions to pypi | |
| verify-tag: | |
| name: verify tag conforms | |
| if: startsWith(github.ref, 'refs/tags/') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Check tag conforms ^[0-9]+\\.[0-9]+\\.[0-9]+$" | |
| run: | | |
| trimmed_tag=${GITHUB_REF#refs/tags/} | |
| echo trimmed_tag='"'$trimmed_tag'"' | |
| exit [[ "$trimmed_tag" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] | |
| # if both build and verify-tag passes | |
| # downloads build artefact | |
| # upload via twine | |
| publish-to-pypi: | |
| name: >- | |
| Publish Python 🐍 distribution 📦 to PyPI | |
| if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes | |
| needs: | |
| - build | |
| - verify-tag | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| - name: "Setup twine to upload artefacts" | |
| run: | | |
| python -m pip install --user --upgrade twine | |
| echo "[pypi]" >~/.pypirc | |
| echo "username = __token__" >>~/.pypirc | |
| echo "password = ${{ secrets.PYPI_TOKEN_XG }}" >>~/.pypirc | |
| - name: Download all the dists | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: python-package-distributions | |
| path: dist/ | |
| - name: Publish distribution 📦 to PyPI (by twine) | |
| run: | | |
| echo "Uploading to pypi" | |
| python -m twine upload dist/* |