How to copy files from azure Devops to Azure file share storage account

Viewed 36

I have a build pipeline which builds *.p12 files and been published a artifacts in the build pipeline

How to copy files from azure Devops pipeline workspace or from published artifacts to Azure storage account (Fileshare) path

2 Answers

You could Azure file copy task in Azure pipeline to copy file from Azure pipeline to azure storage account. This task works only when run on Windows agents.

enter image description here

“Az storage file upload “ az cli command works to upload files from azure Devops pipeline workspace to fileshare storage account

Related