Skip to content

Commit

Permalink
chore(cd/vercel): change pnpm to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
dc7devs committed May 16, 2024
1 parent 17d3e35 commit 619cbe4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Install vercel CLI
run: |
pnpm install
pnpm i --global vercel@latest
npm i --global vercel@latest
- name: Pull vercel environment information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install vercel CLI
run: |
pnpm install
pnpm i --global vercel@latest
npm i --global vercel@latest
- name: Pull vercel environment information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
Expand Down

0 comments on commit 619cbe4

Please sign in to comment.