Skip to content

Commit 52643fa

Browse files
Added doxygen build command
1 parent 8ced63c commit 52643fa

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/linux.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ jobs:
1616
uses: actions/checkout@v4
1717
with:
1818
repository: DiligentGraphics/DiligentEngine
19-
path: DiligentEngine
19+
path: ${{github.workspace}}/DiligentEngine
2020
submodules: true
21+
ref: development
2122

2223
- name: Install Doxygen
2324
shell: bash
@@ -28,3 +29,13 @@ jobs:
2829
sudo cp -r doxygen-$DOXYGEN_VERSION/bin/* /usr/local/bin/
2930
rm -rf doxygen-$DOXYGEN_VERSION*
3031
doxygen --version
32+
33+
- name: Build Documentation
34+
working-directory: ${{github.workspace}}/DiligentEngine
35+
shell: bash
36+
run: |
37+
# Build page structure
38+
python Doc/md_pages.py Doc/pages.dox
39+
# Build documentation
40+
mkdir -p build/docs
41+
doxygen Doc/doxygen.cfg

0 commit comments

Comments
 (0)