我有一个詹金斯管道,它将上传我的工件(一个zip文件)到nexus。
为此,我使用 nexusArtifactUploader。
这样做时,nexusArtifactUploader 通过在末尾附加日期时间和一些数字来重命名我的 zip 文件,而我想按原样保留文件的实际名称。
片段:
nexusArtifactUploader artifacts: [[artifactId: 'my_project_load', classifier: '', file: '/apps/external/5/jenkins-node-home/workspace/my_project_load_load-0.1.29-SNAPSHOT.zip', type: 'zip']], credentialsId: 'Aiman_Sarosh_cred', groupId: 'com.group.id', nexusUrl: 'nexus.com/nexus', nexusVersion: 'nexus2', protocol: 'https', repository: 'ict-snapshots', version: '0.1.29-SNAPSHOT'
我得到了这个:
16:59:14 Uploading: https://nexus.com/nexus/content/repositories/content/repositories/ict-snapshots/com/group/id/my_project_load-0.1.29-SNAPSHOT/0.1.29-SNAPSHOT/my_project_load-0.1.29-SNAPSHOT-0.1.29-20230922.112914-1.zip
我该如何处理?