-
Notifications
You must be signed in to change notification settings - Fork 60
42 lines (36 loc) · 956 Bytes
/
deploy-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
name: doxygen
on:
push:
branches:
# Make sure this is the branch name you are using
- master
workflow_dispatch:
permissions:
contents: write
jobs:
deploy-gh-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# If your document requires Git submodules, uncomment the next line
# submodules: true
- name: Install Tools
shell: bash
run: |
sudo apt-get update
sudo apt-get -qq install doxygen graphviz
- name: generat doxygen html
shell: bash
run: |
ls
cd doc/doxygen
doxygen Doxyfile
- name: Deployment documentation
uses: JamesIves/github-pages-deploy-action@v4
with:
# This is the branch name to which the document is deployed
branch: gh-pages
folder: doc/doxygen/output