Merge pull request #92 from AsPJT/develop #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate-Doxygen | |
on: | |
push: | |
branches: | |
- main | |
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 ${{github.workspace}}/Document/Doxygen | |
doxygen Doxyfile | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: ${{github.workspace}}/Document/Doxygen/html |