From bcce02dc9e0972952b69aece92204a033a61e45d Mon Sep 17 00:00:00 2001 From: Rajendra Reddy Date: Tue, 7 Apr 2026 14:46:00 +0000 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index a673475..0f08c0c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -4,16 +4,16 @@ on: workflow_call: inputs: run_build: - type: boolean + type: string default: true run_sonar: - type: boolean + type: string default: true run_deploy: - type: boolean + type: string default: false wait_for_quality_gate: - type: boolean + type: string default: true tech_stack: type: string @@ -85,7 +85,7 @@ jobs: # 🔨 BUILD build: - if: inputs.run_build == true + if: inputs.run_build == "true" uses: Rajendra.Reddy/wdipl-actions/.gitea/workflows/build.yml@main with: tech_stack: ${{ inputs.tech_stack }} @@ -93,7 +93,7 @@ jobs: # 🔍 SONAR sonar: - if: inputs.run_sonar == true + if: inputs.run_sonar == "true" needs: build uses: Rajendra.Reddy/wdipl-actions/.gitea/workflows/quality.yml@main with: @@ -104,7 +104,7 @@ jobs: # 🚀 DEPLOY deploy: - if: inputs.run_deploy == true + if: inputs.run_deploy == "true" needs: [build, sonar] uses: Rajendra.Reddy/wdipl-actions/.gitea/workflows/deploy.yml@main with: