Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,22 @@ concurrency:
jobs:
build-docs:
name: Build Documentation
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Doxygen
uses: mattnotmitt/doxygen-action@v1.12.0
with: { working-directory: docs }
- name: Install Doxygen
uses: ssciwr/doxygen-install@v1
with: { version: "1.14.0" }
- name: Build
run: cd docs && doxygen
- name: Configure Pages
uses: actions/configure-pages@v5
- name: Upload Generated Docs
uses: actions/upload-pages-artifact@v3
with: { path: docs/output }
with: { path: docs/output/html }
deploy:
name: Deploy Documentation
needs: build-docs
permissions:
pages: write
Expand Down
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PROJECT_NAME = LiveKit ESP-32 SDK
PROJECT_NAME = LiveKit ESP32 SDK
OUTPUT_DIRECTORY = ./output
OPTIMIZE_OUTPUT_FOR_C = YES
WARN_IF_UNDOCUMENTED = YES
Expand Down
Loading