From a42fb76da867f9d84e24623d76f6a9c9c22dfc49 Mon Sep 17 00:00:00 2001 From: Torben Sorensen Date: Thu, 25 Dec 2025 14:45:22 -0800 Subject: [PATCH] minor sql fix in schema check --- .gitea/workflows/deploy-to-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy-to-test.yml b/.gitea/workflows/deploy-to-test.yml index 6b2c00fe..8bc1abcf 100644 --- a/.gitea/workflows/deploy-to-test.yml +++ b/.gitea/workflows/deploy-to-test.yml @@ -283,7 +283,7 @@ jobs: echo "WARNING: No schema hash found in the test database." echo "This is expected for a first-time deployment. The hash will be set after a successful deployment." echo "--- Debug: Dumping schema_info table ---" - PGPASSWORD="$DB_PASSWORD" psql -v ON_ERROR_STOP=0 -h "$DB_HOST" -p 5432 -U "$DB_USER" -d "$DB_NAME" -c "SELECT * FROM public.schema_info;" || true + PGPASSWORD="$DB_PASSWORD" psql -v ON_ERROR_STOP=0 -h "$DB_HOST" -p 5432 -U "$DB_USER" -d "$DB_NAME" -P pager=off -c "SELECT * FROM public.schema_info;" || true echo "----------------------------------------" # We allow the deployment to continue, but a manual schema update is required. # You could choose to fail here by adding `exit 1`.