From 0aeb28088df3e2763a0be559e44eb91369695c79 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Sat, 8 Feb 2025 15:40:06 +0100 Subject: [PATCH] ci(azure-pipelines): fix release binary download path --- .azure-pipelines/templates/jobs/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/templates/jobs/release.yaml b/.azure-pipelines/templates/jobs/release.yaml index 0f7454a85..dff112582 100644 --- a/.azure-pipelines/templates/jobs/release.yaml +++ b/.azure-pipelines/templates/jobs/release.yaml @@ -24,8 +24,8 @@ jobs: - task: DownloadPipelineArtifact@2 displayName: Download FraDrive binaries inputs: - artifactName: backend - patterns: 'backend/bin/*' + artifactName: Build_backend + patterns: 'Build_backend/bin/*' targetPath: '$(Build.Repository.LocalPath)' - task: Docker@2