From 088a2ac4ce1f08fa3f6a3f8a375b518797afb98a Mon Sep 17 00:00:00 2001 From: Yentec Date: Thu, 21 May 2026 22:16:58 +0200 Subject: [PATCH] fix(ci): override DATABASE_URL with direct URL for prisma migrate deploy step --- .github/workflows/ci.yml | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d43c089..30e2bbb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,6 +52,8 @@ jobs: - run: npm ci - run: npx playwright install --with-deps chromium - run: npx prisma migrate deploy + env: + DATABASE_URL: ${{ secrets.E2E_DIRECT_DATABASE_URL }} - run: npm run build - run: npx playwright test - if: failure() diff --git a/package.json b/package.json index 048f845..9d93992 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "feedbackflow", - "version": "1.0.4", + "version": "1.0.5", "private": true, "scripts": { "dev": "next dev",