-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (48 loc) · 1.89 KB
/
build-docs.yml
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 Docs
on:
push:
branches: ["main", "dev"]
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: "3.11"
- uses: r-lib/actions/setup-r@v2
name: setup R
- name:
run: |
R -e 'install.packages(c("rmarkdown", "knitr", "reticulate"))'
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --with docs --no-interaction --no-root
- name: Install project
run: poetry install --with docs --no-interaction
- name: Run quartodoc build
run: |
cd docs
poetry run quartodoc build
poetry run python objects.py
poetry run quartodoc interlinks
- name: Setup quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Render and publush to gh-pages
run: |
git config --global user.email "[email protected]"
git config --global user.name "Quarto GHA Workflow Runner"
poetry run quarto publish gh-pages docs --no-browser