File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,17 +40,17 @@ jobs:
4040 uses : actions/setup-node@v4
4141 with :
4242 node-version : 22
43- cache : npm # or pnpm / yarn
43+ cache : yarn # or pnpm / yarn
4444 - name : Setup Pages
4545 uses : actions/configure-pages@v4
4646 - name : Install dependencies
47- run : npm ci # or pnpm install / yarn install / bun install
47+ run : yarn install # or pnpm install / yarn install / bun install
4848 - name : Build with VitePress
49- run : npm run docs: build # or pnpm docs:build / yarn docs:build / bun run docs:build
49+ run : yarn build # or pnpm docs:build / yarn docs:build / bun run docs:build
5050 - name : Upload artifact
5151 uses : actions/upload-pages-artifact@v3
5252 with :
53- path : docs /.vitepress/dist
53+ path : content /.vitepress/dist
5454
5555 # Deployment job
5656 deploy :
You can’t perform that action at this time.
0 commit comments