Skip to content

Feature/cache dependencies #60

Feature/cache dependencies

Feature/cache dependencies #60

Workflow file for this run

#
# Created by Max Thielen on Oct. 15, 2021
# Updated by Jibbe Andringa on Mar. 7, 2023
#
name: Doxygen Documentation
on:
# Triggers the action on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this action manually from the Actions tab
workflow_dispatch:
jobs:
deploy_doxy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: "true"
- name: Install Doxygen
run: sudo apt-get install doxygen -y
shell: bash
- name: Generate Doxygen Documentation
run: doxygen doxygen
shell: bash
- name: Deploy to Github Pages
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
github_token: ${{ secrets.github_token }}
branch: gh_pages
folder: docs/html