We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0efe210 commit 98b5127Copy full SHA for 98b5127
1 file changed
.github/workflows/doxygen.yml
@@ -0,0 +1,26 @@
1
+name: Build and Deploy Doxygen Docs
2
+
3
+on:
4
+ push:
5
+ branches: [ main ] # sempre que atualizar a main, a doc é regenerada
6
7
+jobs:
8
+ docs:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout repository
12
+ uses: actions/checkout@v3
13
14
+ - name: Install dependencies
15
+ run: |
16
+ sudo apt-get update
17
+ sudo apt-get install -y doxygen graphviz
18
19
+ - name: Build documentation
20
+ run: doxygen Doxyfile
21
22
+ - name: Deploy to GitHub Pages
23
+ uses: peaceiris/actions-gh-pages@v3
24
+ with:
25
+ github_token: ${{ secrets.GITHUB_TOKEN }}
26
+ publish_dir: ./docs/html
0 commit comments