From 4acf0d5248ce64b6ddd143a1af5c46bca89a2442 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sat, 7 Mar 2026 14:02:23 -0600 Subject: [PATCH] fix: use DATABASE_URL instead of DATABASE_HOST --- .forgejo/workflows/production.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/production.yaml b/.forgejo/workflows/production.yaml index a1e1f97b..d89b409d 100644 --- a/.forgejo/workflows/production.yaml +++ b/.forgejo/workflows/production.yaml @@ -15,8 +15,7 @@ jobs: runs-on: ubuntu-22.04 env: MIX_ENV: test - DATABASE_HOST: postgres - DATABASE_PORT: 5432 + DATABASE_URL: ecto://postgres:postgres@postgres/towerops_test services: postgres: @@ -83,8 +82,7 @@ jobs: needs: test-exunit env: MIX_ENV: dev - DATABASE_HOST: postgres - DATABASE_PORT: 5432 + DATABASE_URL: ecto://postgres:postgres@postgres/towerops_dev services: postgres: