File tree Expand file tree Collapse file tree 3 files changed +42
-18
lines changed
Expand file tree Collapse file tree 3 files changed +42
-18
lines changed Original file line number Diff line number Diff line change 1+ name : Docs
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ tagName :
7+ description : ' Test'
8+ type : boolean
9+
10+ jobs :
11+ Docs :
12+ runs-on : ubuntu-latest
13+ permissions :
14+ actions : read
15+ contents : write
16+ pull-requests : write
17+ steps :
18+ - name : Checkout
19+ uses : actions/checkout@v3
20+ - name : Checkout doxygen awesome
21+ uses : actions/checkout@v3
22+ with :
23+ repository : jothepro/doxygen-awesome-css
24+ path : doxygen-awesome-css
25+ - name : Install doxygen & zip
26+ run : sudo apt-get update && sudo apt-get install doxygen graphviz zip -y
27+ - name : Generate Doxygen Documentation
28+ run : doxygen Doxyfile
29+ - name : Create .nojekyll
30+ run : touch docs/html/.nojekyll
31+ - name : Deploy Documentation to branch
32+ uses : JamesIves/github-pages-deploy-action@v4
33+ with :
34+ branch : docs
35+ folder : docs/html
Original file line number Diff line number Diff line change 2626 steps :
2727 - name : Checkout
2828 uses : actions/checkout@v3
29- - name : Install doxygen & zip
30- run : sudo apt-get update && sudo apt-get install doxygen graphviz zip -y
31- - name : Generate Doxygen Documentation
32- run : doxygen Doxyfile
33- - name : Create .nojekyll
34- run : touch docs/html/.nojekyll
35- - name : Deploy Documentation to branch
36- uses : JamesIves/github-pages-deploy-action@v4
37- with :
38- branch : docs
39- folder : docs/html
4029 - name : Copy LICENSE
4130 run : cp LICENSE include/bitstream/LICENSE
4231 - name : Copy NETSTACKLICENSE
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ FILE_PATTERNS = *.c \
174174 *.ice
175175RECURSIVE = YES
176176EXCLUDE = test \
177- doxygen-awesome
177+ doxygen-awesome-css
178178EXCLUDE_SYMLINKS = NO
179179EXCLUDE_PATTERNS =
180180EXCLUDE_SYMBOLS =
@@ -215,14 +215,14 @@ IGNORE_PREFIX =
215215GENERATE_HTML = YES
216216HTML_OUTPUT = html
217217HTML_FILE_EXTENSION = .html
218- HTML_HEADER = doxygen-awesome/header.html
218+ HTML_HEADER = doxygen-awesome-css/doxygen-custom /header.html
219219HTML_FOOTER =
220220HTML_STYLESHEET =
221- HTML_EXTRA_STYLESHEET = doxygen-awesome/doxygen-awesome.css \
222- doxygen-awesome/doxygen-awesome-sidebar-only.css
223- HTML_EXTRA_FILES = doxygen-awesome/doxygen-awesome-fragment-copy-button.js \
224- doxygen-awesome/doxygen-awesome-paragraph-link.js \
225- doxygen-awesome/doxygen-awesome-interactive-toc.js
221+ HTML_EXTRA_STYLESHEET = doxygen-awesome-css /doxygen-awesome.css \
222+ doxygen-awesome-css /doxygen-awesome-sidebar-only.css
223+ HTML_EXTRA_FILES = doxygen-awesome-css /doxygen-awesome-fragment-copy-button.js \
224+ doxygen-awesome-css /doxygen-awesome-paragraph-link.js \
225+ doxygen-awesome-css /doxygen-awesome-interactive-toc.js
226226HTML_COLORSTYLE = AUTO_LIGHT
227227HTML_COLORSTYLE_HUE = 220
228228HTML_COLORSTYLE_SAT = 100
You can’t perform that action at this time.
0 commit comments