Skip to content

Commit

Permalink
[ADD] Added action for doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
AlessandroFornasier committed Nov 20, 2023
1 parent ef642c6 commit e866abf
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Doxygen Action
on:
push:
branches: [ main ]

jobs:
generate-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Generate Doxygen
uses: mattnotmitt/doxygen-action@edge
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/html
force_orphan: true

0 comments on commit e866abf

Please sign in to comment.