We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feac566 commit a3a733dCopy full SHA for a3a733d
.github/workflows/generate-docs.yml
@@ -0,0 +1,36 @@
1
+name: Auto Build Docs
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - 'docs.openc3.com/**'
7
+ branches:
8
+ - main
9
10
+jobs:
11
+ build-and-commit:
12
+ runs-on: ubuntu-latest
13
14
+ permissions:
15
+ contents: write
16
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ with:
20
+ fetch-depth: 0 # Required to push commits
21
22
+ - uses: actions/setup-node@v4
23
24
+ node-version: 22
25
26
+ - name: Install dependencies
27
+ run: yarn
28
+ working-directory: docs.openc3.com
29
30
+ - name: Build docs
31
+ run: yarn build
32
33
34
+ - uses: stefanzweifel/git-auto-commit-action@v5
35
36
+ commit_message: Automated Doc Build Change
0 commit comments