From 62e33eb5505cf350ed4c588470f8f6ac48e40172 Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Mon, 4 May 2026 22:26:57 +0530 Subject: [PATCH] refactor: update CI workflow to use environment exports instead of GITHUB_ENV for database configuration --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4762fd2..69e2541 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,12 +93,10 @@ jobs: - name: Setup DB connection Variables run: | - echo "DB_HOST=postgres" >> $GITHUB_ENV - echo "DB_PORT=5432" >> $GITHUB_ENV + export DB_HOST=postgres + export DB_PORT=5432 cp ../.env.example ../.env uv sync - echo "DB_HOST=postgres" >> ../.env - echo "DB_PORT=5432" >> ../.env - name: Lint & Test run: |