Skip to content

Doxygen as github action #1

Doxygen as github action

Doxygen as github action #1

Workflow file for this run

name: Generate Doxygen Documentation
on:
push:
branches:
- main # or your default branch
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Doxygen
uses: marketplace/actions/setup-doxygen
- name: Generate Doxygen Documentation
run: |
cd doxygen
doxygen Doxyfile
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: doxygen/html # The folder the action should deploy.
clean: true # Automatically remove deleted files from the deployment