We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaa3ed6 commit 0b277c5Copy full SHA for 0b277c5
.github/workflows/deploy.yml
@@ -30,16 +30,17 @@ jobs:
30
uses: actions/checkout@v4
31
with:
32
fetch-depth: 0 # 如果未启用 lastUpdated,则不需要
33
- - uses: pnpm/action-setup@v3 # 如果使用 pnpm,请取消此区域注释
+ - uses: pnpm/action-setup@v3
34
35
version: 9
36
- name: Setup Node
37
uses: actions/setup-node@v4
38
39
node-version: 20
40
- cache: pnpm # 或 pnpm / yarn
+ registry-url: 'https://registry.npmjs.org'
41
+ cache: pnpm
42
- name: Install dependencies
- run: pnpm install # 或 pnpm install / yarn install / bun install
43
+ run: pnpm install
44
- name: Build Package
45
run: |
46
pnpm run components:build
0 commit comments