From 17d95b2f257f2c33a6c0c347cc7d2a7f06958903 Mon Sep 17 00:00:00 2001 From: harrywan Date: Mon, 14 Sep 2020 16:55:43 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=BD=93=E6=8F=90=E4=BA=A4master?= =?UTF-8?q?=E5=88=86=E6=94=AF=E6=97=B6=E8=87=AA=E5=8A=A8=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=E6=96=87=E6=A1=A3=EF=BC=8C=E5=B9=B6=E4=B8=94=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E5=88=B0gh-pages=E5=88=86=E6=94=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docs.yml | 42 +++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 8351a974..0aa1a71e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,19 +1,23 @@ -# name: GitHub Actions Build and Deploy Demo -# on: -# push: -# branches: -# - master -# jobs: -# build-and-deploy: -# runs-on: ubuntu-latest -# steps: -# - name: Checkout -# uses: actions/checkout@master - -# - name: Build and Deploy -# uses: JamesIves/github-pages-deploy-action@master -# env: -# ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} -# BRANCH: gh-pages -# FOLDER: build -# BUILD_SCRIPT: npm install && npm run build +name: GitHub Actions Build and Deploy Demo +on: + push: + branches: + - master +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@master + # 使用 node:10 + - name: use Node.js 10 + uses: actions/setup-node@v1 + with: + node-version: 10 + - name: Build and Deploy + uses: JamesIves/github-pages-deploy-action@master + env: + ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} + BRANCH: gh-pages + FOLDER: docs/.vuepress/dist + BUILD_SCRIPT: cd packages/fes-doc && npm install && npm run build