File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Publish Documentation on Release
2+
3+ on :
4+ release :
5+ types : [created]
6+
7+ jobs :
8+ deploy-docs :
9+ runs-on : ubuntu-latest
10+
11+ steps :
12+ - name : Check out code
13+ uses : actions/checkout@v2
14+
15+ - name : Set up Node.js
16+ uses : actions/setup-node@v2
17+ with :
18+ node-version : ' 15'
19+
20+ - name : Install Doxygen
21+ run : sudo apt-get install doxygen
22+
23+ - name : Generate Doxygen Documentation
24+ run : doxygen Doxyfile
25+
26+ - name : Deploy to GitHub Pages
27+ uses : peaceiris/actions-gh-pages@v3
28+ with :
29+ github_token : ${{ secrets.GITHUB_TOKEN }}
30+ publish_dir : ./docs/html
Original file line number Diff line number Diff line change @@ -2689,3 +2689,4 @@ GENERATE_LEGEND = YES
26892689# The default value is: YES.
26902690
26912691DOT_CLEANUP = YES
2692+ GENERATE_HTML = YES
You can’t perform that action at this time.
0 commit comments