Skip to content

documentation: configuring doxyfile for publishing documentation in g… #24

documentation: configuring doxyfile for publishing documentation in g…

documentation: configuring doxyfile for publishing documentation in g… #24

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:
cd doxygen
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