We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efc536e commit 80fcc5eCopy full SHA for 80fcc5e
.github/workflows/deploy.yml
@@ -18,17 +18,13 @@ jobs:
18
uses: actions/checkout@v4
19
with:
20
fetch-depth: 0
21
- - name: Setup pnpm
22
- uses: pnpm/action-setup@v3
23
- with:
24
- version: 8
25
- name: Use Node.js ${{ matrix.node-version }}
26
uses: actions/setup-node@v4
27
28
node-version: ${{ matrix.node-version }}
29
- cache: 'pnpm'
+ cache: 'npm'
30
- name: Install Vercel CLI
31
- run: pnpm add -D vercel@latest
+ run: npm install --global vercel@latest
32
- name: Pull Vercel Environment Information
33
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
34
- name: Build Project Artifacts
0 commit comments