From 40b50ea7409bdceaa7a27ff097a25f5554248511 Mon Sep 17 00:00:00 2001 From: ta264 Date: Sun, 11 Aug 2019 15:14:41 +0100 Subject: [PATCH] Try to fix package step --- azure-pipelines.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 094ce98f7..c173b90c3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -125,10 +125,20 @@ stages: vmImage: 'vs2017-win2016' steps: - checkout: self - - download: current - artifact: 'WindowsBackend' - - download: current - artifact: 'WindowsFrontend' + - task: DownloadPipelineArtifact@2 + inputs: + buildType: 'current' + artifactName: WindowsBackend + targetPath: _output + - task: DownloadPipelineArtifact@2 + inputs: + buildType: 'current' + artifactName: WindowsFrontend + targetPath: _output + # - download: current + # artifact: 'WindowsBackend' + # - download: current + # artifact: 'WindowsFrontend' - bash: ./build.sh --only-packages displayName: Create Lidarr Packages - task: PublishPipelineArtifact@0