Skip to content

Commit 4909e7f

Browse files
committed
docs: add doxygen comment
1 parent 9c898db commit 4909e7f

File tree

5 files changed

+2849
-441
lines changed

5 files changed

+2849
-441
lines changed

.github/workflows/main.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Documentation
2+
3+
on:
4+
push:
5+
branches: [ shared_pointer ]
6+
release:
7+
types: [ published ]
8+
9+
jobs:
10+
build-docs:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Doxygen
17+
run: |
18+
sudo apt-get install -y doxygen graphviz
19+
20+
- name: Generate Docs
21+
working-directory: ./docs
22+
run: |
23+
doxygen Doxyfile
24+
25+
- name: Deploy to GitHub Pages
26+
uses: peaceiris/actions-gh-pages@v3
27+
with:
28+
github_token: ${{ secrets.GITHUB_TOKEN }}
29+
publish_dir: ./docs/build/html
30+
keep_files: true

0 commit comments

Comments
 (0)