如何使用带有通配符的 curl 命令将工件部署到 Jfrog Artifactory 存储库。
我正在尝试使用 Jenkins 管道脚本中的以下内容,但出现错误。
stage 'Deploy Aritfacts to Artifactory'
withCredentials([usernameColonPassword(credentialsId: '<enter credentials ID>', variable: 'password')]) {
sh " curl -k -u $password -T ${WORKSPACE}/soureCode/integration/dan-0.0.1-SNAPSHOT.zip "https://<enter artifactory URL>/maven-prereleases-local/com/dan/ "
当您运行构建时,它实际上会生成一个工件 dan-0.0.1-SNAPSHOT.zip,我正在尝试对工件版本使用通配符,而不是使用硬编码版本。但出现如下错误
curl: Can't open '/bld/workspace/demoPipeline/soureCode/integration/dan-*-SNAPSHOT.zip'!
curl: try 'curl --help' or 'curl --manual' for more information
Finished: FAILURE