From 93f968a03b155c22d20b95474dede90ce6495c23 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Sun, 26 Jan 2025 14:49:35 +0100 Subject: [PATCH] ci(azure-pipelines): copy artifacts from service dependencies --- .azure-pipelines/templates/service.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.azure-pipelines/templates/service.yaml b/.azure-pipelines/templates/service.yaml index 61c87300f..2e4a9a613 100644 --- a/.azure-pipelines/templates/service.yaml +++ b/.azure-pipelines/templates/service.yaml @@ -111,7 +111,13 @@ stages: - checkout: self - ${{ each dep in parameters.serviceDependencies }}: - download: current + displayName: Download artifacts from ${{ dep }} dependency artifact: ${{ dep }} + - task: CopyFiles@2 + displayName: Copy artifacts from ${{ dep }} dependency + inputs: + Contents: '$(Agent.WorkFolder)/${{dep}}' + TargetFolder: '$(Build.Repository.LocalPath)' - ${{ each buildStep in parameters.buildSteps }}: - template: ./service/build-step.yaml parameters: