From 0ad291b7a65e54352830cb1946ab7e1d7a4821f3 Mon Sep 17 00:00:00 2001 From: WDI-Ideas Date: Tue, 7 Apr 2026 23:47:31 +0530 Subject: [PATCH] fix(ci): pass run_* as quoted strings for Gitea Act Made-with: Cursor --- .gitea/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index a3a38be..a796780 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,10 +12,10 @@ jobs: with: tech_stack: node - # Central CI expects YAML booleans (type: boolean). Do not use quoted "true"/"false". - run_build: true - run_sonar: true - run_deploy: true + # Gitea Act (WDIPL-Runner) matches run_* with string 'true'. Use quoted values. + run_build: 'true' + run_sonar: 'true' + run_deploy: 'true' wait_for_quality_gate: 'false' app_path_beta: /var/www/app-beta