What is the best way to retain and download locally a .txt file that is generated during an Azure Devops release?

I am generating a .txt file which includes information about the deployment during my release at a specific stage located at the $(System.BuildDirectory). How can I obtain this .txt file and download it locally, for example onto my desktop?

Thanks

Upvotes: 0

Views: 60

Answers (1)

Hugh Lin
Hugh Lin

Reputation: 19451

As a workaround, you can try to add a Windows Machine File Copy task to copy the .txt file to your local machine.

enter image description here

Upvotes: 1

Related Questions