Skip to content

Add tracking link for uv_build GA release #231

Add tracking link for uv_build GA release

Add tracking link for uv_build GA release #231

Workflow file for this run

# This GitHub Actions job will build the user guide and publish it to the
# gh-pages branch each time the main branch is updated. This branch is
# configured to be served automatically using GitHub Pages.
name: pages
on:
push:
branches: [main]
env:
UV_VERSION: "0.6.9"
PYTHON_VERSION: "3.11"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: ${{ env.UV_VERSION }}
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: uv sync --locked
- name: Publish Docs
run: uv run nox -s docs_github_pages