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