From cae5e53a6b282c888846d13b26f1bfcd0e99593b Mon Sep 17 00:00:00 2001 From: Brian Love Date: Mon, 25 May 2026 18:16:05 -0700 Subject: [PATCH] ci: drop redundant Minting service deploy job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The job has been failing on every main push since Vercel's project config carries rootDirectory=apps/minting-service. The action invoked `vercel deploy --prebuilt` from `working-directory: apps/minting-service`, which doubles the path: vercel resolves apps/minting-service/apps/minting-service and 500s. Vercel's git integration already auto-deploys the minting service on every push to main — that's why mint.threadplane.ai has been healthy on every recent commit (5066fad1, af84132b, …, ea35d59b) despite this job failing. Drop it. Vercel owns the deploy; if it ever breaks we'll see it in the Vercel dashboard and via /api/health. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/ci.yml | 41 +++++----------------------------------- 1 file changed, 5 insertions(+), 36 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1edaf066..83ed6660 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -789,42 +789,11 @@ jobs: }); NODE - minting-deploy: - name: Minting service deploy - needs: [library] - runs-on: ubuntu-latest - if: github.ref == 'refs/heads/main' && github.event_name == 'push' - steps: - - uses: actions/checkout@v6.0.2 - - uses: actions/setup-node@v6.3.0 - with: - node-version: 22 - cache: npm - - run: npm ci - - name: Deploy minting service to Vercel (production) - working-directory: apps/minting-service - run: | - mkdir -p .vercel - cat > .vercel/project.json <