-
Notifications
You must be signed in to change notification settings - Fork 152
40 lines (38 loc) · 1.01 KB
/
doxygen.yml
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
32
33
34
35
36
37
38
39
40
name: build Docs
on:
pull_request:
branches: [master, v1.x]
paths:
- "*.h"
- "docs/**"
- "!docs/README.md"
- "*.md"
- "examples**.cpp"
- "examples**.ino"
- "images/**"
- ".github/workflows/doxygen.yml"
- "Doxyfile"
- "library.properties" # get lib version from here
push:
branches: [master, v1.x]
paths:
- "*.h"
- "docs/**"
- "!docs/README.md"
- "*.md"
- "examples**.cpp"
- "examples**.ino"
- "images/**"
- ".github/workflows/doxygen.yml"
- "Doxyfile"
- "library.properties" # get lib version from here
release:
types: [published, edited]
workflow_dispatch:
jobs:
build-docs:
uses: nRF24/.github/.github/workflows/build_docs.yaml@main
with:
deploy-gh-pages: ${{ github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master') }}
doxygen-version: '1.10.0'
secrets: inherit