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 2ee73f2 commit 750501eCopy full SHA for 750501e
.github/workflows/update.yml
@@ -0,0 +1,25 @@
1
+name: Deploy Site
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v2
14
+ with:
15
+ ref: site
16
17
+ - run: /usr/bin/git submodule init
18
+ - run: /usr/bin/git submodule update --remote
19
20
+ - name: Commit to GitHub
21
+ uses: EndBug/add-and-commit@v7
22
23
+ add: docs-cn
24
+ branch: site
25
+ message: "docs(cn): update submodule"
0 commit comments