[38;5;243m 1[0m [38;5;249mfix(deploy): make scaffolded main.py… #42
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: Docs | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "docs/**" | |
| - "mkdocs.yml" | |
| - ".github/workflows/docs.yml" | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pages: write | |
| jobs: | |
| docs: | |
| name: Deploy Documentation | |
| runs-on: ubuntu-latest | |
| # Skip on release commits — the release workflow deploys versioned docs | |
| if: "!startsWith(github.event.head_commit.message, 'chore(release):')" | |
| concurrency: | |
| group: deploy-docs | |
| cancel-in-progress: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Install docs dependencies | |
| run: uv sync --group docs | |
| - name: Configure git | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| - name: Fetch gh-pages branch | |
| run: | | |
| git fetch origin gh-pages:gh-pages || echo "No gh-pages branch exists yet — mike will create it" | |
| - name: Deploy docs (main branch — dev alias) | |
| id: deploy_dev | |
| run: | | |
| uv run mike deploy --push --update-aliases dev | |
| continue-on-error: true | |
| - name: Retry docs deployment on failure | |
| if: steps.deploy_dev.outcome == 'failure' | |
| run: | | |
| echo "Retrying documentation deployment..." | |
| git fetch origin gh-pages:gh-pages --force | |
| uv run mike deploy --push --update-aliases --ignore-remote-status dev |