Skip to content

added files for github pages documentation #9

added files for github pages documentation

added files for github pages documentation #9

Workflow file for this run

name: Generate and Deploy Doxygen Documentation
on:
push:
branches:
- main # Trigger the workflow on push to the main branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Doxygen Action
uses: mattnotmitt/[email protected]
with:
doxyfile-path: "./docs/Doxyfile"
working-directory: "."
- name: List Output Files
run: ls -R ./docs/html
- name: Create .nojekyll file
run: touch ./docs/html/.nojekyll
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
publish_dir: ./docs/html