Skip to content

Commit 23a7e27

Browse files
committed
deploy vuepress github action
1 parent 12fbf67 commit 23a7e27

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/vuepress-deploy.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build and Deploy
2+
on: [push]
3+
jobs:
4+
build-and-deploy:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout
8+
uses: actions/checkout@master
9+
10+
- name: vuepress-deploy
11+
uses: jenkey2011/vuepress-deploy@master
12+
env:
13+
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
14+
TARGET_REPO: jbaysolutions/vue-grid-layout
15+
TARGET_BRANCH: master
16+
BUILD_SCRIPT: cd website && yarn && yarn build
17+
BUILD_DIR: website/public

0 commit comments

Comments
 (0)