Skip to content

Commit 8bc434a

Browse files
committed
Changed from DownloadPipelineArtifact to DownloadBuildArtifacts since this is required to work with PublishBuildArtifacts.
1 parent 91ad955 commit 8bc434a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

build/download-build-steps.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
steps:
2-
- task: DownloadPipelineArtifact@0
3-
displayName: 'Download build'
2+
- task: DownloadBuildArtifacts@0
3+
displayName: 'Download artifacts'
44
inputs:
5+
buildType: 'current'
6+
downloadType: 'single'
57
artifactName: artifacts
6-
targetPath: $(System.DefaultWorkingDirectory)
8+
downloadPath: $(System.DefaultWorkingDirectory)

0 commit comments

Comments
 (0)