File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed
Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change 1414 name : Ubuntu -> Build
1515
1616 steps :
17+ - name : Install Doxygen
18+ uses : DiligentGraphics/github-action/install-doxygen@v6
19+
1720 - name : Checkout code
18- uses : actions/checkout@v3
21+ uses : actions/checkout@v4
22+
23+ - name : Checkout Diligent Engine
24+ uses : actions/checkout@v4
25+ with :
26+ repository : DiligentGraphics/DiligentEngine
27+ path : ${{github.workspace}}/DiligentEngine
28+ submodules : true
29+
30+ - name : Build Documentation
31+ working-directory : ${{github.workspace}}/DiligentEngine
32+ shell : bash
33+ run : |
34+ # Build page structure
35+ python Doc/md_pages.py Doc/pages.dox
36+ # Build documentation
37+ mkdir -p build/docs
38+ doxygen Doc/doxygen.cfg
39+ # Move documentation to the root directory
40+ mv ${{github.workspace}}/DiligentEngine/build/docs/html ${{github.workspace}}/docs
41+ # Remove the source directory
42+ rm -rf ${{github.workspace}}/DiligentEngine
1943
2044 - name : Download artifacts
2145 if : success()
You can’t perform that action at this time.
0 commit comments