From 1150b59dcf08641722da3585ccb7e33caa29e6a8 Mon Sep 17 00:00:00 2001 From: AlexeerCT Date: Tue, 24 Mar 2026 15:42:22 -0500 Subject: [PATCH] Update example for TEST_DATABASE_URL in CI workflow - Modified the error message in the build workflow to clarify the expected format for the TEST_DATABASE_URL, specifying the use of a real IP address instead of the placeholder "host". - This change enhances the guidance provided to users, ensuring correct configuration for database connections in testing scenarios. --- .gitea/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 23a2f909..24d77a37 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -36,7 +36,7 @@ jobs: set -e if [ -z "$TEST_DATABASE_URL" ]; then echo "::error::Define el secret TEST_DATABASE_URL en el repo (Gitea → Ajustes → Secretos)." - echo "Ejemplo: postgresql://usuario:clave@host:5432/nombre_bd" + echo "Ejemplo: postgresql://usuario:clave@127.0.0.1:5432/nombre_bd (host real, no el texto \"host\")" exit 1 fi python3 --version