Skip to content

fix: fix the issue with incorrect image paths #15

fix: fix the issue with incorrect image paths

fix: fix the issue with incorrect image paths #15

Workflow file for this run

name: docs
on:
push:
branches:
- master
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
env:
DOCS_GA_ID:
NODE_VERSION: '20'
steps:
- uses: actions/checkout@v3
with:
# “最近更新时间” 等 git 日志相关信息,需要拉取全部提交记录
fetch-depth: 0
# - name: Install pnpm
# uses: pnpm/action-setup@v2
# with:
# # 选择要使用的 pnpm 版本
# version: 7
# # 使用 pnpm 安装依赖
# run_install: true
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
# cache: pnpm
# - name: Install dependencies
# run: pnpm install --frozen-lockfile
# 运行构建脚本
- name: Build documentation site
run: yarn && yarn build
# 查看 workflow 的文档来获取更多信息
# @see https://github.com/crazy-max/ghaction-github-pages
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2.2.0
with:
target_branch: gh-pages
build_dir: docs/.vuepress/dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}