-
Notifications
You must be signed in to change notification settings - Fork 1k
43 lines (41 loc) · 1.09 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
41
42
43
name: build Docs
on:
pull_request:
types: [opened, reopened]
paths:
- "*.h"
- "docs/**"
- "!docs/README.md"
- "*.md"
- "utility/template/*.h"
- "examples**.cpp"
- "examples**.ino"
- "images/**"
- "datasheets/**"
- ".github/workflows/doxygen.yml"
- "Doxyfile"
- "library.properties" # get lib version from here
push:
paths:
- "*.h"
- "docs/**"
- "!docs/README.md"
- "*.md"
- "utility/template/*.h"
- "examples**.cpp"
- "examples**.ino"
- "images/**"
- "datasheets/**"
- ".github/workflows/doxygen.yml"
- "Doxyfile"
- "library.properties" # get lib version from here
release:
types: [published, edited]
branches: [master]
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') }}
secrets: inherit