Azure DevOps 中是否有等效的 GitHib 版本?
Is there an equivalent of GitHib releases in Azure DevOps?
简单来说,Azure Devops 是否有与 GitHub 版本非常接近的东西?
我想发布在 Azure DevOps 管道期间创建的项目,以便之后可以在中央位置轻松查看和下载它们。最接近我正在寻找的是 GitHub releases 的工作方式,其中有一个网页列出了存储库的所有版本以及可以为每个版本下载的资产。
在我看来,Azure DevOps 管道中发布的工件总是与管道的 运行 相关联,并且没有一种简单的方法来查看在GitHub 版本提供了历史视图,但也许我遗漏了什么。
Azure Artifacts 不能满足我的需求,因为它与特定的打包格式相关联并且旨在用于开发人员工具。
I would like to publish artifacts that are created during an Azure
DevOps pipeline so that they be easily viewed and downloaded
afterwards in a central location.
作为解决方法,您可以在 Publish Pipeline Artifacts 任务中将 Artifact publish location
切换为 A file share
,然后指定您的网络驱动器文件夹路径。
指定要将文件复制到的文件共享路径。该路径必须是 fully-qualified 路径或相对于存储库根目录的有效路径。不支持将工件从 Linux 或 macOS 代理发布到文件共享。
除此之外,应该没有其他built-in托管,恐怕Azure Artifact最接近你的需求。 because it is tied to particular packaging formats
可以考虑使用Universal Packages.
简单来说,Azure Devops 是否有与 GitHub 版本非常接近的东西?
我想发布在 Azure DevOps 管道期间创建的项目,以便之后可以在中央位置轻松查看和下载它们。最接近我正在寻找的是 GitHub releases 的工作方式,其中有一个网页列出了存储库的所有版本以及可以为每个版本下载的资产。
在我看来,Azure DevOps 管道中发布的工件总是与管道的 运行 相关联,并且没有一种简单的方法来查看在GitHub 版本提供了历史视图,但也许我遗漏了什么。
Azure Artifacts 不能满足我的需求,因为它与特定的打包格式相关联并且旨在用于开发人员工具。
I would like to publish artifacts that are created during an Azure DevOps pipeline so that they be easily viewed and downloaded afterwards in a central location.
作为解决方法,您可以在 Publish Pipeline Artifacts 任务中将 Artifact publish location
切换为 A file share
,然后指定您的网络驱动器文件夹路径。
指定要将文件复制到的文件共享路径。该路径必须是 fully-qualified 路径或相对于存储库根目录的有效路径。不支持将工件从 Linux 或 macOS 代理发布到文件共享。
除此之外,应该没有其他built-in托管,恐怕Azure Artifact最接近你的需求。 because it is tied to particular packaging formats
可以考虑使用Universal Packages.