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