Skip to content

Commit

Permalink
change bun to npm in vercel-deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
milewskibogumil committed Dec 21, 2024
1 parent ec7baf0 commit 6f8323b
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/vercel-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@ jobs:
run:
working-directory: ./apps/astro
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
- uses: oven-sh/setup-bun@v2
node-version: '18.x'
- name: Install Vercel CLI
run: bun install --global vercel@latest
run: npm install --global vercel@latest
- name: Install Dependencies
run: bun install
run: npm install
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
Expand Down

0 comments on commit 6f8323b

Please sign in to comment.