I have simple job which upload artifact and publish Build info
on Jenkins URL for Build info is https://artifacts.******.com/artifactory/ui/builds/project_name/73/1626838876890/published
but this link should be https://artifacts.******.com/ui/builds/project_name/73/1626838876890/published
without artifactory
what can be issue ?
here is pipeline code:
stage ('Upload Artifactory') {
steps {
script {
echo "Starting to upload Artifact"
rtUpload (
"serverId": "Artifact_server",
"buildName": JOB_NAME,
"buildNumber": BUILD_NUMBER,
"spec": """{
"files": [{
"pattern": "*.zip",
"target": "generic/myfolder/"
}]
}"""
)
}
}
}
stage ('Publish build info') {
steps {
rtPublishBuildInfo (
"serverId": "Artifact_server",
"buildName": JOB_NAME,
"buildNumber": BUILD_NUMBER
)
}
}