Skip to content

Commit

Permalink
add workflow to generate and publish documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gkueppers committed Nov 9, 2023
1 parent 0e25de4 commit 2dcd408
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Documentation

on: push

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: true
- name: Run Doxygen
uses: mattnotmitt/[email protected]
with:
working-directory: doc
doxyfile-path: Doxyfile
- name: Publish to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: doc/html

0 comments on commit 2dcd408

Please sign in to comment.