From 5f43f0f4ee3706ab779de90098e2c113cac19392 Mon Sep 17 00:00:00 2001 From: Jakub Scholz Date: Thu, 4 Jul 2024 15:51:11 +0200 Subject: [PATCH] Fix the Helm Chart release pipeline to ignore the state of container push with suffix (#10298) Signed-off-by: Jakub Scholz --- .azure/release-pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure/release-pipeline.yaml b/.azure/release-pipeline.yaml index 7d2097bba41..ddd81648ad9 100644 --- a/.azure/release-pipeline.yaml +++ b/.azure/release-pipeline.yaml @@ -69,7 +69,7 @@ stages: displayName: Publish Helm Chart as OCI artifact dependsOn: - containers_publish - condition: and(succeeded(), startsWith(variables['build.sourceBranch'], 'refs/heads/release-')) + condition: and(in(dependencies.containers_publish, 'Succeeded', 'SucceededWithIssues'), startsWith(variables['build.sourceBranch'], 'refs/heads/release-')) jobs: - template: 'templates/jobs/build/publish_helm_chart_as_oci.yaml' parameters: