44 lines
No EOL
1.1 KiB
YAML
44 lines
No EOL
1.1 KiB
YAML
name: docs-builder
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
if: github.event.repository.fork == false
|
|
|
|
permissions:
|
|
pages: write
|
|
id-token: write
|
|
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v5
|
|
with:
|
|
version: "0.6.3"
|
|
- name: Set up Python 3.13
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.13"
|
|
|
|
- name: Install the project
|
|
run: uv sync --all-extras --dev
|
|
|
|
- name: Build the docs
|
|
run: cd docs && uv run make html
|
|
|
|
- name: Upload the artifact
|
|
uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
path: docs/_build
|
|
|
|
- name: Deploy to GH Pages
|
|
uses: actions/deploy-pages@v4 |