June 2020
Intermediate to advanced
432 pages
11h 57m
English
A common use of multi-stage pipelines it to separate the build stage and the deployment stage. To make this possible, the build stage often publishes one or more pipeline artifacts. This was discussed in the previous chapter.
All the artifacts that were published in a previous stage of the current pipeline can be downloaded using a download task:
steps:- download: current artifact: artifactName
It is also possible to download artifacts from other pipelines. To do this, the current constant has to be replaced with the name of that pipeline. Pipeline artifacts are downloaded to the $(Pipeline.Workspace) directory.
Read now
Unlock full access