chore: 当提交master分支时自动构建文档,并且提交到gh-pages分支

This commit is contained in:
harrywan 2020-09-14 16:55:43 +08:00
parent 60f736f31c
commit 17d95b2f25

View File

@ -1,19 +1,23 @@
# name: GitHub Actions Build and Deploy Demo name: GitHub Actions Build and Deploy Demo
# on: on:
# push: push:
# branches: branches:
# - master - master
# jobs: jobs:
# build-and-deploy: build-and-deploy:
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# steps: steps:
# - name: Checkout - name: Checkout
# uses: actions/checkout@master uses: actions/checkout@master
# 使用 node:10
# - name: Build and Deploy - name: use Node.js 10
# uses: JamesIves/github-pages-deploy-action@master uses: actions/setup-node@v1
# env: with:
# ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} node-version: 10
# BRANCH: gh-pages - name: Build and Deploy
# FOLDER: build uses: JamesIves/github-pages-deploy-action@master
# BUILD_SCRIPT: npm install && npm run build env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/.vuepress/dist
BUILD_SCRIPT: cd packages/fes-doc && npm install && npm run build