从 DevOps 管道库下载丢失的文件

Download lost file from DevOps pipeline Library

我丢失了一个文件,该文件在 DevOps 库中的库中仍然可用。 有没有办法以某种方式保存本地副本? 它仍然可以在管道中使用,但我不知道如何将它放到我的本地计算机上。

您可以使用 Download Secure File task to download the file in the pipeline and then use Publish Build Artifacts 任务将文件发布为构建工件。

使用下载安全文件下载时见下文:

Once downloaded, use the name value that is set on the task (or "Reference name" in the classic editor) to reference the path to the secure file on the agent machine. For example, if the task is given the name mySecureFile, its path can be referenced in the pipeline as $(mySecureFile.secureFilePath)

因此在 Publish Build Artifacts 任务中将 Path to publish 设置为 $(mySecureFile.secureFilePath)

然后您可以通过单击相关工件从构建摘要页面下载文件。见下文: