-
-
Notifications
You must be signed in to change notification settings - Fork 106
31 lines (25 loc) · 683 Bytes
/
doxygen.yaml
File metadata and controls
31 lines (25 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Build documentation
on:
push:
tags: [ v* ]
jobs:
build:
name: Build documentation
runs-on: ubuntu-latest
container: devkitpro/devkitppc:latest
steps:
- uses: actions/checkout@v3.5.2
with:
persist-credentials: false
- name: Display Doxygen version
run: echo "Doxygen version $(doxygen -v)"
- name: Build documentation
run: |
OGC_VERSION=${{ github.ref_name }} doxygen Doxyfile
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
BRANCH: gh-pages
FOLDER: docs/html
CLEAN: true
SINGLE_COMMIT: true