Skip to content

Break down search into multiple search activities (#6) #4

Break down search into multiple search activities (#6)

Break down search into multiple search activities (#6) #4

Workflow file for this run

name: Deploy MkDocs Site
on:
push:
branches:
- main # Triggers deployment on push to the main branch
env:
REGISTRY: ghcr.io
UV_VERSION: 0.9
PYTHON_VERSION: 3.12
UV_SYSTEM_PYTHON: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: ${{ env.UV_VERSION }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Build and Deploy
run: |
uv run --extra dev mkdocs gh-deploy --force --remote-branch gh-pages