chore(ci): use YAML booleans for reusable workflow inputs
All checks were successful
Project CI-testing / ci (push) Successful in 0s

Made-with: Cursor
This commit is contained in:
WDI-Ideas
2026-04-07 22:45:21 +05:30
parent a43ce681c5
commit 552f4a717a

View File

@@ -12,10 +12,11 @@ jobs:
with:
tech_stack: node
run_build: "true"
run_sonar: "true"
run_deploy: "true"
wait_for_quality_gate: "false"
# Gitea may pass these as booleans; central CI accepts bool or string (see job if: there).
run_build: true
run_sonar: true
run_deploy: true
wait_for_quality_gate: 'false'
app_path_beta: /var/www/app-beta
app_path_staging: /var/www/app-staging