-
Notifications
You must be signed in to change notification settings - Fork 8
44 lines (41 loc) · 950 Bytes
/
gh-pages.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
on:
workflow_dispatch:
push:
branches:
- master
paths:
- "lib/*"
- "doc/*"
- "src/*"
- ".github/workflows/gh-pages.yml"
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
gh-pages:
runs-on: ubuntu-latest
container:
image: rodrigodornelles/doxygen:lua
steps:
- uses: actions/checkout@v3
- run: apt-get -y update
- run: apt-get -y install cmake g++
- name: cmake
working-directory: ./doc
run: cmake .
- name: build docs
working-directory: ./doc
run: cmake --build .
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: 'doc/html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2