diff --git a/vars/declarativeFunctions.groovy b/vars/declarativeFunctions.groovy index a152eb6..18186de 100644 --- a/vars/declarativeFunctions.groovy +++ b/vars/declarativeFunctions.groovy @@ -1,20 +1,12 @@ #!groovy def pushArtifact (Map config) { - stage ("Push Artifact: " + config.fileName) { - steps { - container ("alpine") { - script { - def ws = pwd() - sh "apk add --no-cache curl" - withCredentials([usernameColonPassword( - credentialsId: config.repoCreds, - variable: "aCreds" - )]) { - sh 'curl --fail --request PUT --user "$aCreds" --upload-file "' + config.filePath + config.fileName + '" "' + config.fileURL + config.fileName + '"' - } - } - } - } + def ws = pwd() + sh "apk add --no-cache curl" + withCredentials([usernameColonPassword( + credentialsId: config.repoCreds, + variable: "aCreds" + )]) { + sh 'curl --fail --request PUT --user "$aCreds" --upload-file "' + config.filePath + config.fileName + '" "' + config.fileURL + config.fileName + '"' } } \ No newline at end of file