File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -9,19 +9,22 @@ concurrency:
9
9
jobs :
10
10
build-docs :
11
11
name : Build Documentation
12
- runs-on : ubuntu-24.04
12
+ runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout
15
15
uses : actions/checkout@v2
16
- - name : Doxygen
17
- uses :
mattnotmitt/[email protected]
18
- with : { working-directory: docs }
16
+ - name : Install Doxygen
17
+ uses : ssciwr/doxygen-install@v1
18
+ with : { version: "1.14.0" }
19
+ - name : Build
20
+ run : cd docs && doxygen
19
21
- name : Configure Pages
20
22
uses : actions/configure-pages@v5
21
23
- name : Upload Generated Docs
22
24
uses : actions/upload-pages-artifact@v3
23
- with : { path: docs/output }
25
+ with : { path: docs/output/html }
24
26
deploy :
27
+ name : Deploy Documentation
25
28
needs : build-docs
26
29
permissions :
27
30
pages : write
Original file line number Diff line number Diff line change 1
- PROJECT_NAME = LiveKit ESP-32 SDK
1
+ PROJECT_NAME = LiveKit ESP32 SDK
2
2
OUTPUT_DIRECTORY = ./output
3
3
OPTIMIZE_OUTPUT_FOR_C = YES
4
4
WARN_IF_UNDOCUMENTED = YES
You can’t perform that action at this time.
0 commit comments