From bd29b18c1020494b54df169c9ab3dcc66d2f1cf1 Mon Sep 17 00:00:00 2001 From: PatrickStar Date: Sun, 14 Jun 2026 02:12:02 -0300 Subject: [PATCH 1/3] ci: trigger deploy From f5996c1633654681ed62a37a7a74894ad86585af Mon Sep 17 00:00:00 2001 From: PatrickStar Date: Sun, 14 Jun 2026 02:14:18 -0300 Subject: [PATCH 2/3] ci: remove production deploy, only preview for PRs and pushes --- .github/workflows/ci.yml | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb4566b..e063971 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,7 +88,7 @@ jobs: name: Deploy Preview (Vercel) runs-on: ubuntu-latest needs: [build, db-migrations] - if: github.event_name == 'pull_request' + if: github.event_name == 'pull_request' || github.event_name == 'push' steps: - name: Checkout code uses: actions/checkout@v4 @@ -102,22 +102,3 @@ jobs: vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} vercel-args: "--prod=false" - - deploy-production: - name: Deploy Production (Vercel) - runs-on: ubuntu-latest - needs: [build, db-migrations] - if: github.event_name == 'push' && github.ref == 'refs/heads/main' - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Deploy to Vercel Production - uses: amondnet/vercel-action@v42 - with: - vercel-token: ${{ secrets.VERCEL_TOKEN }} - vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} - vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} - vercel-args: "--prod=true" From d525e3f182192b2ed915e241608f16cc2ca66b05 Mon Sep 17 00:00:00 2001 From: PatrickStar Date: Sun, 14 Jun 2026 02:17:10 -0300 Subject: [PATCH 3/3] ci: remove vercel deploy, manual deploy via Vercel dashboard --- .github/workflows/ci.yml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e063971..6ec58de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,22 +83,3 @@ jobs: - name: Build Next.js application run: npm run build - - deploy-preview: - name: Deploy Preview (Vercel) - runs-on: ubuntu-latest - needs: [build, db-migrations] - if: github.event_name == 'pull_request' || github.event_name == 'push' - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Deploy to Vercel Preview - uses: amondnet/vercel-action@v42 - with: - vercel-token: ${{ secrets.VERCEL_TOKEN }} - vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} - vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} - vercel-args: "--prod=false"