Skip to content

Commit

Permalink
ci: next js dependencies not detect
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuuriii committed Nov 13, 2023
1 parent ff9bbcb commit 5418f5d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,8 @@ jobs:
run: pnpm i && pnpm -g add vercel
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
- name: Build Project Artifacts & Deploy Project Artifacts to Vercel
uses: pnpm/action-setup@v2
with:
version: 8
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}

- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} && vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}

0 comments on commit 5418f5d

Please sign in to comment.