-
Notifications
You must be signed in to change notification settings - Fork 79
71 lines (60 loc) · 1.48 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Publish Docs
on:
push:
paths:
- docs/**
- osm_fieldwork/**
- mkdocs.yml
branches: [main]
# Allow manual trigger (workflow_dispatch)
workflow_dispatch:
permissions:
contents: write
jobs:
build_doxygen:
name: Build Doxygen Docs
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Doxygen
run: sudo apt-get update && sudo apt-get install -y doxygen
- name: Write cache
uses: actions/cache@v3
with:
path: |
.cache
docs/apidocs
key: doc-build-${{ env.cache_id }}
- name: Build Doxygen Docs
run: |
cd docs
doxygen
publish_docs:
name: Publish Docs
runs-on: ubuntu-latest
needs: [build_doxygen]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- name: Read cache
uses: actions/cache@v3
with:
path: |
.cache
docs/apidocs
key: doc-build-${{ env.cache_id }}
restore-keys: |
doc-build-
- name: Install PDM
run: |
python3 -m pip install pdm
- name: Publish
run: |
pdm install -G docs --no-default
pdm run mkdocs gh-deploy --force