Skip to content

Commit

Permalink
🐛 change the package manager to pnpm in deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafa-kheibary committed Apr 24, 2024
1 parent e2d52f9 commit a40d145
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache: pnpm
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Install dependencies
run: npm ci # or pnpm install / yarn install / bun install
run: pnpm ci # or pnpm install / yarn install / bun install
- name: Build with VitePress
run: npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
run: pnpm docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down

0 comments on commit a40d145

Please sign in to comment.