diff --git a/prisma/deploy.ts b/prisma/deploy.ts index 976688e..bf0659c 100644 --- a/prisma/deploy.ts +++ b/prisma/deploy.ts @@ -11,7 +11,10 @@ const deployPrismaMigrationsWithRetrying = () => { const execute = async () => { try { - await $`pnpm prisma migrate deploy`; + const { stdout } = await $`pnpm prisma migrate deploy`; + + // eslint-disable-next-line no-console -- this is for debugging in deployment logs + console.log(stdout); } catch (error) { if (currentRetry >= MAX_RETRIES) throw error;