Skip to content

doc

doc #6

Workflow file for this run

name: doc
permissions:
contents: write
on:
# regenerate when master branch is updated
push:
branches:
- master
# or when manually triggered from the Actions tab
workflow_dispatch:
jobs:
build-doc:
name: Generation of documentation
runs-on: ubuntu-latest
steps:
- name: obtain copy of repository
uses: actions/checkout@v1
- name: run doxygen to generate doc, outputting inside doxyconfig/html
uses: mattnotmitt/[email protected]
with:
working-directory: ./doxyconfig
doxyfile-path: config
enable-latex: true
- name: deploy new doc to github pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doxyconfig/html