From 0406feb2d01b1d30a86e05bfaa6e73cab8e297fb Mon Sep 17 00:00:00 2001 From: WDI-Ideas Date: Wed, 8 Apr 2026 20:01:43 +0530 Subject: [PATCH] chore(ci): normalize boolean inputs as strings and pass testing path Use explicit string true/false values for run flags and add app_path_testing to match central/deploy workflow inputs. Made-with: Cursor --- .gitea/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1d990f9..b613315 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,12 +12,13 @@ jobs: with: tech_stack: node - run_build: true - run_sonar: true - run_deploy: true - wait_for_quality_gate: false + run_build: 'true' + run_sonar: 'true' + run_deploy: 'true' + wait_for_quality_gate: 'false' app_path_beta: /var/www/app-beta + app_path_testing: /var/www/app-testing app_path_staging: /var/www/app-staging app_path_prod: /var/www/app-prod