There was an error while loading. Please reload this page.
1 parent 48bc0db commit 1632876Copy full SHA for 1632876
.travis.yml
@@ -6,6 +6,15 @@ cache: npm
6
7
script: npm run build
8
9
+after_script:
10
+ - cd ./dist
11
+ - git init
12
+ - git config user.name "${USER_NAME}"
13
+ - git config user.email "${USER_EMAIL}"
14
+ - git add .
15
+ - git commit -m ":rocket: 自动部署"
16
+ - git push --force --quiet "https://${$GITHUB_TOKEN}@${GH_REF}" master:${P_BRANCH}
17
+
18
deploy:
19
provider: pages
20
skip_cleanup: true
0 commit comments