Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/generate-doxygen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Generate Doxygen

on:
push:
branches:
- develop

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- 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/github-pages-deploy-action@v4.4.3
with:
branch: gh-pages
folder: ./html
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -277,4 +277,6 @@ AS_DEBUG/
.DS_Store
.vscode

2010/
2010/

Document/Doxygen/*/
Loading