remove declarative structure

This commit is contained in:
Hyatt 2022-02-18 12:37:06 -06:00
parent 276db59979
commit 577750b0d8
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -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 + '"'
}
}