docs: 发布到pages

This commit is contained in:
wanchun 2022-05-25 11:34:10 +08:00
parent 6c32ed5051
commit 85c6bb652b
3 changed files with 3 additions and 2 deletions

View File

@ -40,7 +40,7 @@ jobs:
- 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: |
yarn
yarn docs:build
yarn docs:build-pages
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.3.3

View File

@ -6,7 +6,7 @@ const config: UserConfig<DefaultThemeOptions> = {
bundler: '@vuepress/webpack',
base: '/',
base: process.env.BASE ? process.env.BASE : '/',
// evergreen: process.env.NODE_ENV !== 'production',

View File

@ -16,6 +16,7 @@
"release": "node scripts/build.js && lerna publish from-git",
"docs:dev": "vuepress dev docs --clean-cache",
"docs:build": "vuepress build docs --clean-cache",
"docs:build-pages": "BASE=fes.js vuepress build docs --clean-cache",
"test": "fes test",
"lint": "eslint -c ./.eslintrc.js --ext .js,.jsx,.vue,.ts"
},