refactor: workflow
parent
89f0d5c20e
commit
4359a0cbfb
|
@ -4,48 +4,38 @@ name: 部署文档
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
# 确保这是你正在使用的分支名称
|
|
||||||
- main
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy-gh-pages:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- uses: actions/checkout@v3
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
# 如果你文档需要 Git 子模块,取消注释下一行
|
- uses: actions/setup-node@v3
|
||||||
# submodules: true
|
|
||||||
|
|
||||||
|
|
||||||
- name: 安装 pnpm
|
|
||||||
uses: pnpm/action-setup@v2
|
|
||||||
with:
|
with:
|
||||||
version: 7
|
|
||||||
run_install: true
|
|
||||||
|
|
||||||
|
|
||||||
- name: 设置 Node.js
|
|
||||||
uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
node-version: 16
|
|
||||||
cache: pnpm
|
cache: pnpm
|
||||||
|
- uses: pnpm/action-setup@v2
|
||||||
- name: 安装依赖
|
with:
|
||||||
run: pnpm install --frozen-lockfile
|
run_install: true
|
||||||
|
- run: pnpm install
|
||||||
- name: 构建文档
|
- run: pnpm run build
|
||||||
env:
|
env:
|
||||||
NODE_OPTIONS: --max_old_space_size=4096
|
NODE_OPTIONS: --max_old_space_size=4096
|
||||||
run: |-
|
- uses: actions/upload-pages-artifact@v1
|
||||||
pnpm run build
|
|
||||||
> docs/.vuepress/dist/.nojekyll
|
|
||||||
|
|
||||||
- name: 部署文档
|
|
||||||
uses: JamesIves/github-pages-deploy-action@v4
|
|
||||||
with:
|
with:
|
||||||
# 这是文档部署到的分支名称
|
path: docs/.vuepress/dist
|
||||||
branch: gh-pages
|
deploy:
|
||||||
folder: docs/.vuepress/dist
|
runs-on: ubuntu-20.04
|
||||||
|
needs: build
|
||||||
|
permissions:
|
||||||
|
pages: write
|
||||||
|
id-token: write
|
||||||
|
environment:
|
||||||
|
name: github-pages
|
||||||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
|
steps:
|
||||||
|
- name: Deploy to GitHub Pages
|
||||||
|
id: deployment
|
||||||
|
uses: actions/deploy-pages@v1
|
Loading…
Reference in New Issue