mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +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
|
||||
# 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user