[py] querychat 0.3.0 #8
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: Python - Release | |
| on: | |
| release: | |
| types: [published] | |
| env: | |
| PYTHON_VERSION: 3.12 | |
| jobs: | |
| pypi-release: | |
| name: Build and release Python package | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.ref, 'refs/tags/py/v') | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/project/querychat/ | |
| permissions: # for trusted publishing | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: π Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| - name: π Set up Python ${{ env.PYTHON_VERSION }} | |
| run: uv python install ${{ env.PYTHON_VERSION }} | |
| - name: π¦ Install the project | |
| run: uv sync --python ${{ env.PYTHON_VERSION }} --all-extras --all-groups | |
| - name: π§ͺ Check tests | |
| run: make py-check-tests | |
| - name: π Check types | |
| run: make py-check-types | |
| - name: π Check formatting | |
| run: make py-check-format | |
| - name: π§³ Build package | |
| run: make py-build | |
| # TODO: https://pypi.org/manage/project/querychat/settings/publishing/ | |
| - name: π’ Publish release on PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| packages-dir: ./dist |