Skip to content

Fix merge conflicts #33

Fix merge conflicts

Fix merge conflicts #33

Workflow file for this run

name: "Deploy Doxygen to GitHub Pages"
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Dependencies
run: sudo apt-get install doxygen graphviz -y
- name: Generate documentation
run: doxygen
- name: Create .nojekyll
run: touch .nojekyll
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: html
CLEAN: true