chore: 修复自动构建文档

This commit is contained in:
harrywan 2021-07-05 11:35:56 +08:00
parent 484d462ff3
commit 59fecc904f

View File

@ -11,10 +11,13 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2.3.1
- 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: npm install && npm run docs:build
- name: Build and Deploy
uses: JamesIves/github-pages-deploy-action@4.1.1
env:
ACCESS_TOKEN: ${{ secrets.QLIN_GITEE_TOKEN }}
BRANCH: master
FOLDER: docs/.vuepress/dist
BUILD_SCRIPT: npm install && npm run docs:build
with:
branch: master # The branch the action should deploy to.
folder: docs/.vuepress/dist # The folder the action should deploy.
token: ${{ secrets.QLIN_GITEE_TOKEN }}