From 755844c2e9aa32aa38bcced60a1f4573be3e926f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dafydd=20Ll=C5=B7r=20Pearson?= Date: Fri, 6 Dec 2024 12:19:04 +0000 Subject: [PATCH] fix(ci): Add correct Prisma secrets --- .github/workflows/deploy-migrations.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-migrations.yaml b/.github/workflows/deploy-migrations.yaml index 818ebe7..3e4f870 100644 --- a/.github/workflows/deploy-migrations.yaml +++ b/.github/workflows/deploy-migrations.yaml @@ -20,4 +20,5 @@ jobs: - name: Apply all pending migrations to the database run: npx prisma migrate deploy env: - DATABASE_URL: ${{ secrets.PRODUCTION_DATABASE_URL }} \ No newline at end of file + POSTGRES_PRISMA_URL: ${{ secrets.PRODUCTION_POSTGRES_PRISMA_URL }} + POSTGRES_URL_NON_POOLING: ${{ secrets.PRODUCTION_POSTGRES_URL_NON_POOLING }} \ No newline at end of file