Skip to content

feat(maxstream): full uprot.net bypass pipeline (CB01 / EuroStreaming… #7

feat(maxstream): full uprot.net bypass pipeline (CB01 / EuroStreaming…

feat(maxstream): full uprot.net bypass pipeline (CB01 / EuroStreaming… #7

Workflow file for this run

name: Deploy documentation
on:
push:
branches: [main]
paths:
- "docs/**"
- "mkdocs.yml"
- ".github/workflows/docs.yml"
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install Python
run: uv python install 3.12
- name: Install dependencies (docs group)
run: uv sync --group docs
- name: Build MkDocs site
run: uv run mkdocs build --strict
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4