diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 42d7495..39b2eb2 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -31,24 +31,20 @@ jobs: - name: Checkout uses: actions/checkout@v4 - # 2️⃣ 安装 Node.js - - name: Setup Node - uses: actions/setup-node@v4 + # 2️⃣ 安装 Bun.js + - uses: oven-sh/setup-bun@v2 with: - node-version: 20 - cache: 'npm' - + bun-version: latest # 3️⃣ 安装依赖 - name: Install Dependencies run: | cd docs - npm install - + bun install # 4️⃣ 构建 VitePress - name: Build VitePress run: | cd docs - npm run build + bun run build # 5️⃣ 上传构建产物 - name: Upload Pages Artifact