如何在发布管道中使用多个工件
How use multiple Artifacts in Release Pipeline
我正在使用 3 个 CI 管道映射到一个发布管道,在每个 CI 管道上创建一些工件。在发布管道的 运行ning 过程中,一些工件可以更新(其他 CI 管道是 运行),我想使用更新版本。
In running process of release pipeline use update version of artifacts.
恐怕你想要的还不支持,因为 Azure Devops 服务不支持在创建发布后更改工件版本。
这是关于 the release artifacts 的文档:
After a release is created, you cannot change these versions. A
release is fundamentally defined by the versioned artifacts that make
up the release. As you deploy the release to various stages, you will
be deploying and validating the same artifacts in all stages.
如果您想使用最新版本的工件,您需要创建一个新版本。
您可以在我们的 UserVoice site 上添加对此功能的请求,这是我们提供产品建议的主要论坛。感谢您帮助我们构建更好的 Azure DevOps。
我正在使用 3 个 CI 管道映射到一个发布管道,在每个 CI 管道上创建一些工件。在发布管道的 运行ning 过程中,一些工件可以更新(其他 CI 管道是 运行),我想使用更新版本。
In running process of release pipeline use update version of artifacts.
恐怕你想要的还不支持,因为 Azure Devops 服务不支持在创建发布后更改工件版本。
这是关于 the release artifacts 的文档:
After a release is created, you cannot change these versions. A release is fundamentally defined by the versioned artifacts that make up the release. As you deploy the release to various stages, you will be deploying and validating the same artifacts in all stages.
如果您想使用最新版本的工件,您需要创建一个新版本。
您可以在我们的 UserVoice site 上添加对此功能的请求,这是我们提供产品建议的主要论坛。感谢您帮助我们构建更好的 Azure DevOps。