We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 003c19d commit c74ed4dCopy full SHA for c74ed4d
.github/workflows/render-documentation.yml
@@ -0,0 +1,29 @@
1
+name: Render Documentation
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - ".github/workflows/render-documentation.ya?ml"
9
+ - "./libraries/WiFiS3/examples/**"
10
+ - "./libraries/WiFiS3/src/**"
11
+ pull_request:
12
13
14
15
16
17
18
+ workflow_dispatch:
19
20
+jobs:
21
+ render-docs:
22
+ permissions:
23
+ contents: write
24
+ uses: arduino/render-docs-github-action/.github/workflows/render-docs.yml@main
25
+ with:
26
+ source-path: './libraries/WiFiS3/src'
27
+ target-path: './libraries/WiFiS3/docs/api.md'
28
+ exclude-pattern: 'StringHelpers.h WiFi.h Modem.h'
29
+ commit: ${{ github.event_name != 'pull_request' }} # Only commit changes if not a PR
0 commit comments