From 524bb4fc020247534bf5e8c08080861c1db489e8 Mon Sep 17 00:00:00 2001 From: Corban-Lee Date: Tue, 13 May 2025 10:13:14 +0100 Subject: [PATCH] chore: fix db con string in build.yaml --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index b05a893..ca0783e 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -23,7 +23,7 @@ jobs: - name: Reset and Push Database Migrations run: npx prisma migrate reset && npm run db:push env: - - DATABASE_URL: "" + - DATABASE_URL: ${{ secrets.POSTGRESQL_CONN_STRING }} - name: Build Dist run: npm run build \ No newline at end of file