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 20a50c0 commit 79b854cCopy full SHA for 79b854c
.github/workflows/deploy.yml
@@ -42,7 +42,10 @@ jobs:
42
- name: Setup Pages
43
uses: actions/configure-pages@v4
44
- name: Install dependencies
45
- run: npm ci # 或 pnpm install / yarn install / bun install
+ run: |
46
+ npm cache clean --force
47
+ rm -rf node_modules package-lock.json
48
+ npm install
49
- name: Build with VitePress
50
run: npm run docs:build # 或 pnpm docs:build / yarn docs:build / bun run docs:build
51
- name: Upload artifact
.gitignore
@@ -1,5 +1,6 @@
1
node_modules/
2
yarn.lock
3
+package-lock.json
4
.DS_Store
5
# local dist
6
/dist
0 commit comments