From ff0d3124f7e676e94d0300db54af479e883af2d6 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 15 Jan 2026 10:17:30 +0000 Subject: [PATCH] fix(ci): remove redundant Vercel deploy workflow Vercel's native GitHub integration already handles deployments. The amondnet/vercel-action workflow was failing and is unnecessary. --- .github/workflows/deploy-web.yml | 42 -------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/deploy-web.yml diff --git a/.github/workflows/deploy-web.yml b/.github/workflows/deploy-web.yml deleted file mode 100644 index f5e923e..0000000 --- a/.github/workflows/deploy-web.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Deploy Web to Vercel - -on: - push: - branches: [main] - paths: - - 'apps/web/**' - - 'packages/config/**' - - '.github/workflows/deploy-web.yml' - workflow_dispatch: - -concurrency: - group: deploy-web-${{ github.ref }} - cancel-in-progress: true - -jobs: - deploy: - runs-on: ubuntu-latest - environment: production - steps: - - uses: actions/checkout@v4 - - - name: Enable Corepack - run: corepack enable - - - uses: pnpm/action-setup@v4 - - - uses: actions/setup-node@v4 - with: - node-version: '24' - cache: 'pnpm' - - - run: pnpm install --frozen-lockfile - - run: pnpm --filter @replimap/config build - - - name: Deploy to Vercel - uses: amondnet/vercel-action@v25 - with: - vercel-token: ${{ secrets.VERCEL_TOKEN }} - vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} - vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID_WEB }} - working-directory: ./apps/web