diff --git a/vars/functions.groovy b/vars/functions.groovy index fb046db..97ad8ba 100644 --- a/vars/functions.groovy +++ b/vars/functions.groovy @@ -88,14 +88,14 @@ def buildContainer (Map config, List buildArg = []) { def pushArtifact (Map config) { def ws = pwd() - stage ("Push Artifact") { + stage ("Push Artifact: " + config.fileName) { container ("alpine") { sh "apk add --no-cache curl" withCredentials([usernameColonPassword( credentialsId: config.repoCreds, variable: "aCreds" )]) { - sh 'curl --request PUT --user "$aCreds" --upload-file "' + config.fileName + '" "' + config.filePath + '"' + sh 'curl --fail --request PUT --user "$aCreds" --upload-file "' + config.filePath + config.fileName + '" "' + config.fileURL + config.fileName + '"' } } }