mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
docs: 添加pages action
This commit is contained in:
parent
e808556385
commit
ee2e79c004
20
.github/workflows/docs.yml
vendored
20
.github/workflows/docs.yml
vendored
@ -2,7 +2,7 @@ name: Deploy Docs
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- next
|
||||
- master
|
||||
paths:
|
||||
- 'docs/**/**'
|
||||
- 'package.json'
|
||||
@ -34,3 +34,21 @@ jobs:
|
||||
REMOTE_USER: root
|
||||
# 目标目录
|
||||
TARGET: /data/web-packages/p/fesjs
|
||||
|
||||
build-and-deploy-pages:
|
||||
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout 🛎️
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
|
||||
run: |
|
||||
pnpm i
|
||||
pnpm docs:build
|
||||
- name: Deploy 🚀
|
||||
uses: JamesIves/github-pages-deploy-action@v4.3.3
|
||||
with:
|
||||
branch: gh-pages # The branch the action should deploy to.
|
||||
folder: docs/.vuepress/dist
|
||||
token: ${{ secrets.ACCESS_TOKEN }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user