@@ -30,16 +30,15 @@ stages:
30
30
vmImage : ' windows-2019'
31
31
steps :
32
32
- task : DownloadBuildArtifacts@0
33
- displayName : Download Blob Artifacts
34
- inputs :
35
- artifactName : ' BlobArtifacts'
33
+ displayName : Download Build Assets
36
34
continueOnError : true
37
-
38
- - task : DownloadBuildArtifacts@0
39
- displayName : Download PDB Artifacts
40
35
inputs :
41
- artifactName : ' PDBArtifacts'
42
- continueOnError : true
36
+ buildType : ' current'
37
+ downloadType : ' specific'
38
+ itemPattern : |
39
+ PDBArtifacts/**
40
+ BlobArtifacts/**
41
+ downloadPath : ' $(Build.ArtifactStagingDirectory)'
43
42
44
43
# This is necessary whenever we want to publish/restore to an AzDO private feed
45
44
# Since sdk-task.ps1 tries to restore packages we need to do this authentication here
@@ -85,23 +84,16 @@ stages:
85
84
vmImage : ' windows-2019'
86
85
steps :
87
86
- task : DownloadBuildArtifacts@0
88
- displayName : Download Package Artifacts
89
- inputs :
90
- buildType : current
91
- artifactName : PackageArtifacts
92
- continueOnError : true
93
-
94
- - task : DownloadBuildArtifacts@0
95
- displayName : Download Blob Artifacts
96
- inputs :
97
- buildType : current
98
- artifactName : BlobArtifacts
87
+ displayName : Download Build Assets
99
88
continueOnError : true
100
- - task : DownloadBuildArtifacts@0
101
- displayName : Download Asset Manifests
102
89
inputs :
103
- buildType : current
104
- artifactName : AssetManifests
90
+ buildType : ' current'
91
+ downloadType : ' specific'
92
+ itemPattern : |
93
+ PackageArtifacts/**
94
+ BlobArtifacts/**
95
+ AssetManifests/**
96
+ downloadPath : ' $(Build.ArtifactStagingDirectory)'
105
97
106
98
- task : NuGetToolInstaller@1
107
99
displayName : ' Install NuGet.exe'
0 commit comments