docs: add IPRally to happy users in README (#351) #3
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: CD on main | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "docs/**" | |
| - "mkdocs.yml" | |
| - "src/**" | |
| - "scripts/deploy_docs.py" | |
| - "pyproject.toml" | |
| - "uv.lock" | |
| - ".github/workflows/CD-main.yml" | |
| env: | |
| UV_SYSTEM_PYTHON: "1" | |
| jobs: | |
| publish-main-docs: | |
| name: Publish Main Docs | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: release | |
| permissions: | |
| contents: write | |
| pages: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: 0.10.9 | |
| enable-cache: true | |
| - name: Set up Python | |
| run: uv python install $PYTHON_VERSION && uv python pin $PYTHON_VERSION | |
| env: | |
| PYTHON_VERSION: 3.11.9 | |
| - name: Fetch gh-pages branch | |
| run: git fetch origin gh-pages:gh-pages || true | |
| - name: Publish Docs | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "actions@github.com" | |
| uv run --group docs --all-extras python scripts/deploy_docs.py --push main |