Skip to content

Commit 0443f0f

Browse files
Update deploy.yml
1 parent 81cb9c9 commit 0443f0f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/deploy.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,14 @@ jobs:
3838
uses: actions/setup-node@v3
3939
with:
4040
node-version: 18
41-
cache: npm # or pnpm / yarn
41+
cache: yarn # or pnpm / yarn
4242
- name: Setup Pages
4343
uses: actions/configure-pages@v3
4444
- name: Install dependencies
45-
run: npm ci # or pnpm install / yarn install / bun install
45+
run: yarn install # or pnpm install / yarn install / bun install
4646
- name: Build with VitePress
4747
run: |
48-
npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
49-
touch docs/.vitepress/dist/.nojekyll
48+
yarn run docs:build
5049
- name: Upload artifact
5150
uses: actions/upload-pages-artifact@v2
5251
with:

0 commit comments

Comments
 (0)