Skip to content

Commit

Permalink
fix(ci): install and configure pnpm before start deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
akiletour committed Apr 15, 2023
1 parent e0253f4 commit f8b0882
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,15 @@ jobs:
Deploy-Production:
runs-on: ubuntu-latest
steps:
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false
- uses: actions/checkout@v3
- name: Install Vercel CLI
run: npm install --global vercel@latest
run: pnpm add --global vercel@latest
- 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 f8b0882

Please sign in to comment.