We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ff4594 commit 7dbc8adCopy full SHA for 7dbc8ad
.github/workflows/vuepress-deploy.yml
@@ -0,0 +1,21 @@
1
+name: Build and Deploy
2
+on:
3
+ push:
4
+ branches: ["main"]
5
+ pull_request:
6
7
+jobs:
8
+ build-and-deploy:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout
12
+ uses: actions/checkout@master
13
+
14
+ - name: vuepress-deploy
15
+ uses: jenkey2011/vuepress-deploy@master
16
+ env:
17
+ ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
18
+ TARGET_REPO: litongjava/tio-boot-docs
19
+ TARGET_BRANCH: gh-pages
20
+ BUILD_SCRIPT: yarn && yarn build
21
+ BUILD_DIR: docs/.vuepress/dist
.travis.yml
0 commit comments