diff --git a/.gitea/workflows/vercel-preview.yaml b/.gitea/workflows/vercel-preview.yaml index 17580a2..8022f82 100644 --- a/.gitea/workflows/vercel-preview.yaml +++ b/.gitea/workflows/vercel-preview.yaml @@ -13,6 +13,8 @@ jobs: - uses: actions/checkout@v2 - name: Install Vercel CLI run: npm install --global vercel@latest + - name: Install pnpm + run: npm install -g pnpm - 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 c2ea287..b4a5feb 100644 --- a/.gitea/workflows/vercel-production.yaml +++ b/.gitea/workflows/vercel-production.yaml @@ -11,6 +11,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: Install pnpm + run: npm install -g pnpm - name: Install Vercel CLI run: npm install --global vercel@latest - name: Pull Vercel Environment Information