From 70888cb027eca82348a505035e7c0bc0885183b7 Mon Sep 17 00:00:00 2001 From: Flavien Darche Date: Mon, 6 Jan 2025 16:02:56 +0100 Subject: [PATCH] only publish the artefacts once and not on retry --- .azure-pipelines/ultimate-pipeline.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.azure-pipelines/ultimate-pipeline.yml b/.azure-pipelines/ultimate-pipeline.yml index a99b367c803f..85f5dc63930e 100644 --- a/.azure-pipelines/ultimate-pipeline.yml +++ b/.azure-pipelines/ultimate-pipeline.yml @@ -5096,6 +5096,7 @@ stages: - task: PublishPipelineArtifact@1 displayName: Publish Docker images artifact + condition: eq( variables['System.JobAttempt'], 1 ) # Only publish once inputs: path: 'docker-images' artifactName: 'docker-images'