-
Notifications
You must be signed in to change notification settings - Fork 7
50 lines (42 loc) · 1.25 KB
/
deploy-documentation.yaml
File metadata and controls
50 lines (42 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Build and Deploy Docs to GitHub Pages
description: Test building docs on pull requests, only deploy when pushing to main.
on:
pull_request:
push:
branches:
- main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
UV_VERSION: "0.7.x"
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
with:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Set up Python 3
uses: actions/setup-python@main
with:
python-version: "3.11"
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
version: ${{ env.UV_VERSION }}
- name: Verify lockfile is up-to-date
run: |
uv lock --directory backend --check
- name: Install Dependencies
run: uv sync --directory backend --extra dev
- name: Build Documentation
run: make docs
# Only deploy pages when pushing to main
- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@v4
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
with:
folder: site
target-folder: docs
clean: true