Skip to content

Merge remote-tracking branch 'origin/main' #45

Merge remote-tracking branch 'origin/main'

Merge remote-tracking branch 'origin/main' #45

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