Skip to content

Commit

Permalink
docs: Using github actions to build docu
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasKuhner committed Sep 6, 2024
1 parent fee3901 commit 8be7be5
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Generate Doxygen documentation

on:
push:
branches:
- PRCUN-2883-update-doxygen
pull_request:
branches:
- main

jobs:
doxygen:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Doxygen
run: sudo apt-get install doxygen graphviz -y

- name: Generate Doxygen configuration and build it
run: mkdir -p build && cd build && cmake -D BUILD_DOCUMENTATION=ON .. && make doc

- name: Deploy to GitHub Pages
if: ${{ github.ref == 'refs/heads/PRCUN-2883-update-doxygen' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build/docs/html
2 changes: 1 addition & 1 deletion doc/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ PROJECT_LOGO = @CMAKE_CURRENT_SOURCE_DIR@/Logo_FRANKA_ROBOTICS_dark.pn
# entered, it will be relative to the location where doxygen was started. If
# left blank the current directory will be used.

OUTPUT_DIRECTORY =
OUTPUT_DIRECTORY = docs

# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
# directories (in 2 levels) under the output directory of each output format and
Expand Down

0 comments on commit 8be7be5

Please sign in to comment.