From 0dfdbc1a7e6d30db26f48417cca6ac62bd6fd800 Mon Sep 17 00:00:00 2001 From: b3ni15 Date: Thu, 16 Oct 2025 13:05:48 +0200 Subject: [PATCH] refactor: Change Vercel CLI installation method from pnpm to npm for consistency --- .gitea/workflows/vercel-preview.yaml | 2 +- .gitea/workflows/vercel-production.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/vercel-preview.yaml b/.gitea/workflows/vercel-preview.yaml index fc53a39..0fdec74 100644 --- a/.gitea/workflows/vercel-preview.yaml +++ b/.gitea/workflows/vercel-preview.yaml @@ -14,7 +14,7 @@ jobs: - name: Install pnpm run: npm install -g pnpm - name: Install Vercel CLI - run: pnpm install --global vercel@latest + run: npm 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 6355163..b4a5feb 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: pnpm install --global vercel@latest + run: npm install --global vercel@latest - name: Pull Vercel Environment Information run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - name: Build Project Artifacts