Skip to content

doc: correction in doxyfile #29

doc: correction in doxyfile

doc: correction in doxyfile #29

Workflow file for this run

name: Generate Documentation
on:
push:
branches:
- main
pull_request:
jobs:
generate-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Doxygen
run: sudo apt-get install doxygen -y
- name: Install Graphviz (if needed for diagrams)
run: sudo apt-get install graphviz -y
- name: Generate Documentation
run:
doxygen Doxyfile
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs