We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c898db commit 4909e7fCopy full SHA for 4909e7f
.github/workflows/main.yml
@@ -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
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