File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html >
3
+ < head >
4
+ < meta http-equiv = "refresh " content = "0; url = web/html/doc/index.html " />
5
+ </ head >
6
+ < body >
7
+ </ body >
8
+ </ html >
Original file line number Diff line number Diff line change @@ -269,16 +269,17 @@ jobs:
269
269
cd ${{ github.workspace }}
270
270
echo 'Generating Doxygen code documentation...'
271
271
doxygen $DOXYFILE 2>&1 | tee doxygen.log
272
- echo 'Creating .nojekyll and copying log...'
273
- echo "" > doxygen/html/.nojekyll
274
- cp doxygen.log doxygen/html/doxygen.log
275
272
# Required so Doxygen links/finds the license file
276
273
cp LICENSE doxygen/html/LICENSE
277
274
# Required in order to link .github/media/ images with doc without modifying doc links. Remove if using `publish_dir: doxygen/html/`
278
275
mkdir -p doxygen_final/web/html/ && mv doxygen/html doxygen_final/web/html/doc
279
276
mkdir -p doxygen_final/web/.github/media/ && cp -rf .github/media/ doxygen_final/web/.github/
280
277
mkdir -p doxygen_final/web/html/.github/media/ && cp -rf .github/media/ doxygen_final/web/html/.github/
281
278
mkdir -p doxygen_final/web/html/doc/.github/media/ && cp -rf .github/media/ doxygen_final/web/html/doc/.github/
279
+ echo 'Copying log...'
280
+ cp doxygen.log doxygen_final/doxygen.log
281
+ echo 'Copying index.html to root pointing to actual docs'
282
+ cp .github/root_index.html doxygen_final/index.html
282
283
if : ${{ matrix.DOCS }}
283
284
- name : Deploy Docs
284
285
uses : peaceiris/actions-gh-pages@v3
You can’t perform that action at this time.
0 commit comments