Reputation: 35
Is it possible use Azure DevOps Pipeline Artifacts to publish/download artifacts between separate stages using Hosted Agents? I assume it's not possible to do this as there are no state between different hosted agents.
Do we have to use self-hosted agents to share artifacts between different stages?
Upvotes: 0
Views: 914
Reputation: 72176
yes this is possible. when you execute the build you upload artifacts. then you start a release that pulls the same artifacts and use those to deploy whatever you are deploying
Upvotes: 1