Skip to content

fix: path

fix: path #9

name: Generate-Doxygen
on:
push:
branches:
- main
env:
DOXYGEN_DOCS: ${{github.workspace}}/Documents/Doxygen
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Doxygen and Graphviz
run: sudo apt-get install doxygen graphviz
- name: Generate Documentation
run: |
cd ${{env.DOXYGEN_DOCS}}
doxygen Doxyfile
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ${{env.DOXYGEN_DOCS}}/html