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 8ced63c commit 52643faCopy full SHA for 52643fa
.github/workflows/linux.yml
@@ -16,8 +16,9 @@ jobs:
16
uses: actions/checkout@v4
17
with:
18
repository: DiligentGraphics/DiligentEngine
19
- path: DiligentEngine
+ path: ${{github.workspace}}/DiligentEngine
20
submodules: true
21
+ ref: development
22
23
- name: Install Doxygen
24
shell: bash
@@ -28,3 +29,13 @@ jobs:
28
29
sudo cp -r doxygen-$DOXYGEN_VERSION/bin/* /usr/local/bin/
30
rm -rf doxygen-$DOXYGEN_VERSION*
31
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