refactor: update CI workflow to use environment exports instead of GITHUB_ENV for database configuration

This commit is contained in:
ramvignesh-b
2026-05-04 22:26:57 +05:30
parent 0aa9f7bdc3
commit 62e33eb550
+2 -4
View File
@@ -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: |