diff --git a/.gitea/workflows/vercel-preview.yaml b/.gitea/workflows/vercel-preview.yaml index 8022f82..fc53a39 100644 --- a/.gitea/workflows/vercel-preview.yaml +++ b/.gitea/workflows/vercel-preview.yaml @@ -11,10 +11,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Install Vercel CLI - run: npm install --global vercel@latest - name: Install pnpm run: npm install -g pnpm + - name: Install Vercel CLI + run: pnpm install --global vercel@latest - name: Pull Vercel Environment Information run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} - name: Build Project Artifacts diff --git a/.gitea/workflows/vercel-production.yaml b/.gitea/workflows/vercel-production.yaml index b4a5feb..6355163 100644 --- a/.gitea/workflows/vercel-production.yaml +++ b/.gitea/workflows/vercel-production.yaml @@ -14,7 +14,7 @@ jobs: - name: Install pnpm run: npm install -g pnpm - name: Install Vercel CLI - run: npm install --global vercel@latest + run: pnpm install --global vercel@latest - name: Pull Vercel Environment Information run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - name: Build Project Artifacts