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`.