如何将工件从一个仓库复制到另一个仓库

时间:2019-07-19 21:47:38

标签: jenkins-pipeline artifactory

如何使用Jenkins参数声明性管道(任何artifacty rest api)将工件中的工件从一个存储库复制到另一存储库。请告知。谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用推广将所有构建工件从资源库“ source-repo”复制到资源库“ target-repo”:

rtPromote (
   serverId: SERVER_ID,
   sourceRepo: 'source-repo',
   targetRepo: 'target-repo',
   copy: true // This will copy the artifacts instead of move them
)

有关更多信息,在这里您可以阅读documentation并找到full example

交互式促销

对于后期促销(不在构建期间),请使用交互式促销。在这里您可以阅读documentation并找到full example