From 577750b0d89dc1b5a3f4962d060612f8d7d61c73 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Fri, 18 Feb 2022 12:37:06 -0600 Subject: [PATCH] remove declarative structure --- vars/declarativeFunctions.groovy | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) 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