I have a Azure data factory to deploy using azure devops. So I have created a build pipeline using the "Publish Build Artifacts" task and created the artifacts folder named "drop" which has the resources i want to deploy.
I need help with the release pipeline for the same. Which task should i use in my release pipeline to deploy this artifact folder "drop"?
I initially tried with ARM template deployment but it doesn't make use of the drop folder and deploys everything i.e, the entire data factory everytime. So i created a build folder wherein i have only limited things to deploy. But i am now stuck with the release pipeline task for the same.
Any help would be great. Thanks
Azure Repos Git
and select the source manually. Am i misunderstanding the requirement? – Yang Shen - MSFTPublishPipelineArtifact
andDownloadPipelineArtifact
task, check Publish and download artifacts and you will see these tasks can share files between stages in a pipeline. – Yang Shen - MSFT