We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a24a2b commit f2c49adCopy full SHA for f2c49ad
.github/workflows/builddocs.yml
@@ -0,0 +1,32 @@
1
+name: Build and Deploy Documentation
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+defaults:
9
+ run:
10
+ shell: bash
11
12
+jobs:
13
+ build_docs:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout master
17
+ uses: actions/checkout@v3
18
19
+ - name: Install Doxygen
20
+ run: sudo apt-get install doxygen graphviz -y
21
22
+ - name: Build documentation
23
+ run: |
24
+ cd doxygen
25
+ doxygen
26
+ touch html/.nojekyll
27
+ cd ..
28
29
+ - name: Deploy to GitHub Pages
30
+ uses: JamesIves/github-pages-deploy-action@v4
31
+ with:
32
+ folder: doxygen/html
0 commit comments