mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
chore: 当提交master分支时自动构建文档,并且提交到gh-pages分支
This commit is contained in:
parent
60f736f31c
commit
17d95b2f25
42
.github/workflows/docs.yml
vendored
42
.github/workflows/docs.yml
vendored
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user