We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9bef39 commit 42507fdCopy full SHA for 42507fd
.github/workflows/main.yml
@@ -27,7 +27,10 @@ jobs:
27
runs-on: ubuntu-latest
28
steps:
29
- name: Checkout
30
- uses: pnpm/action-setup@v3 # 如果使用 pnpm,请取消此区域注释
+ uses: actions/checkout@v4
31
+ with:
32
+ fetch-depth: 0 # 如果未启用 lastUpdated,则不需要
33
+ - uses: pnpm/action-setup@v3 # 如果使用 pnpm,请取消此区域注释
34
with:
35
version: 9
36
# - uses: oven-sh/setup-bun@v1 # 如果使用 Bun,请取消注释
@@ -40,7 +43,7 @@ jobs:
40
43
uses: actions/configure-pages@v4
41
44
- name: Install dependencies
42
45
run: pnpm install # 或 pnpm install / yarn install / bun install
- - name: Build with VitePress
46
+ - name: Build with Vue
47
run: pnpm run build # 或 pnpm docs:build / yarn docs:build / bun run docs:build
48
- name: Upload artifact
49
uses: actions/upload-pages-artifact@v3
0 commit comments