Update .gitea/workflows/ci.yml

This commit is contained in:
2026-04-07 10:24:33 +00:00
parent bf47b5b156
commit 41aff8d460

View File

@@ -86,7 +86,7 @@ jobs:
# 🔨 BUILD
build:
if: inputs.run_build == true
uses: <YOUR_GITEA_URL>/wdipl-actions/.gitea/workflows/build.yml@main
uses: http://git.wdipl.com/wdipl-actions/.gitea/workflows/build.yml@main
with:
tech_stack: ${{ inputs.tech_stack }}
build_command: ${{ inputs.build_command }}
@@ -95,7 +95,7 @@ jobs:
sonar:
if: inputs.run_sonar == true
needs: build
uses: <YOUR_GITEA_URL>/wdipl-actions/.gitea/workflows/sonar.yml@main
uses: http://git.wdipl.com/wdipl-actions/.gitea/workflows/quality.yml@main
with:
wait_for_quality_gate: ${{ inputs.wait_for_quality_gate }}
secrets:
@@ -106,7 +106,7 @@ jobs:
deploy:
if: inputs.run_deploy == true
needs: [build, sonar]
uses: <YOUR_GITEA_URL>/wdipl-actions/.gitea/workflows/deploy.yml@main
uses: http://git.wdipl.com/wdipl-actions/.gitea/workflows/deploy.yml@main
with:
tech_stack: ${{ inputs.tech_stack }}
deploy_command: ${{ inputs.deploy_command }}