File tree Expand file tree Collapse file tree 4 files changed +2148
-952
lines changed Expand file tree Collapse file tree 4 files changed +2148
-952
lines changed Original file line number Diff line number Diff line change 9
9
container : devkitpro/devkitppc:latest
10
10
11
11
steps :
12
- - uses : actions/checkout@v3
12
+ - uses : actions/checkout@v3.5.2
13
13
14
14
- name : Build
15
15
run : |
Original file line number Diff line number Diff line change
1
+ name : Build documentation
2
+
3
+ on :
4
+ push :
5
+ tags : [ v* ]
6
+
7
+ jobs :
8
+ build :
9
+ name : Build documentation
10
+ runs-on : ubuntu-latest
11
+ container : devkitpro/devkitppc:latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@v3.5.2
15
+ with :
16
+ persist-credentials : false
17
+
18
+ - name : Display Doxygen version
19
+ run : echo "Doxygen version $(doxygen -v)"
20
+
21
+ - name : Build documentation
22
+ run : |
23
+ OGC_VERSION=${{ github.ref_name }} doxygen Doxyfile
24
+
25
+ - name : Deploy 🚀
26
+ uses : JamesIves/github-pages-deploy-action@v4.4.1
27
+ with :
28
+ BRANCH : gh-pages
29
+ FOLDER : docs/html
30
+ CLEAN : true
31
+ SINGLE_COMMIT : true
You can’t perform that action at this time.
0 commit comments