-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (38 loc) · 985 Bytes
/
gh-pages.yaml
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
name: gh-pages
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install Doxygen
run: sudo apt-get update && sudo apt-get install cmake doxygen graphviz -y
shell: bash
- name: Run Doxygen
run: |
CMAKE_OPTIONS=(
-DFORGE_SCAN_ONLY_BUILD_DOCS=ON
)
cmake -B build -S . "${CMAKE_OPTIONS[@]}"
cmake --build build --target doc
- name: Deploy to GitHub Pages
if: ${{ success() && github.ref == 'refs/heads/main' && github.event_name == 'push' }}
uses: crazy-max/ghaction-github-pages@v3.2.0
with:
target_branch: gh-pages
build_dir: build/doc/html
jekyll: false
keep_history: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}