diff options
| author | 2019-06-23 18:04:26 -0700 | |
|---|---|---|
| committer | 2019-06-29 20:05:38 -0700 | |
| commit | 0d1e773d146ddbc827072ee425da29b936f74ec4 (patch) | |
| tree | 099cb67655044f36c145948637e6a61f601c1c15 | |
| parent | Use variable for build ID pls work (diff) | |
Try for V2 again
| -rw-r--r-- | azure-pipelines.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 033e54a..097b419 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -48,13 +48,13 @@ jobs: printf '%s\n' "##vso[task.setvariable variable=PREV_COMMIT;isOutput=true]${prev_commit}" displayName: 'Get Previous Successful Build' - - task: DownloadPipelineArtifact@1 + - task: DownloadPipelineArtifact@2 inputs: buildType: 'specific' - project: $(System.TeamProject) + project: $(System.TeamProjectId) pipeline: $(System.DefinitionId) buildVersionToDownload: 'specific' - buildId: '$(PREV_BUILD)' + buildId: $(PREV_BUILD) artifactName: 'base_id' displayName: 'Download Base ID Artifact' |