Skip to content

Commit

Permalink
Add doxygen workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dmronga committed Dec 3, 2024
1 parent 18cd55e commit 4504e11
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Doxygen Action

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
generate_doc:
runs-on: ubuntu-latest

steps:
# Check out repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2

- name: Doxygen Action
uses: mattnotmitt/[email protected]
with:
# Path to Doxyfile
doxyfile-path: "./Doxyfile" # default is ./Doxyfile
# Working directory
working-directory: "." # default is .

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc

0 comments on commit 4504e11

Please sign in to comment.