From 2e1b60e32478a757fc64a0a7da8e4775363f1605 Mon Sep 17 00:00:00 2001 From: Matt Jeanes Date: Sat, 7 Mar 2020 22:25:14 +0000 Subject: [PATCH] Update publish-job.yml for Azure Pipelines --- .azuredevops/pipelines/publish-job.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.azuredevops/pipelines/publish-job.yml b/.azuredevops/pipelines/publish-job.yml index 884ad69ec..41fae01f0 100644 --- a/.azuredevops/pipelines/publish-job.yml +++ b/.azuredevops/pipelines/publish-job.yml @@ -37,15 +37,13 @@ stages: jobs: - job: steps: - - task: DownloadBuildArtifacts@0 + - task: DownloadPipelineArtifact@2 inputs: buildType: 'current' - downloadType: 'specific' - itemPattern: '**.zip' - downloadPath: '$(System.ArtifactsDirectory)' + targetPath: '$(System.ArtifactsDirectory)' - pwsh: | - Get-ChildItem ($env:SYSTEM_ARTIFACTSDIRECTORY) + Get-ChildItem -Recurse ($env:SYSTEM_ARTIFACTSDIRECTORY) # - task: GitHubRelease@1