remove declarative structure
This commit is contained in:
parent
276db59979
commit
577750b0d8
@ -1,20 +1,12 @@
|
|||||||
#!groovy
|
#!groovy
|
||||||
|
|
||||||
def pushArtifact (Map config) {
|
def pushArtifact (Map config) {
|
||||||
stage ("Push Artifact: " + config.fileName) {
|
def ws = pwd()
|
||||||
steps {
|
sh "apk add --no-cache curl"
|
||||||
container ("alpine") {
|
withCredentials([usernameColonPassword(
|
||||||
script {
|
credentialsId: config.repoCreds,
|
||||||
def ws = pwd()
|
variable: "aCreds"
|
||||||
sh "apk add --no-cache curl"
|
)]) {
|
||||||
withCredentials([usernameColonPassword(
|
sh 'curl --fail --request PUT --user "$aCreds" --upload-file "' + config.filePath + config.fileName + '" "' + config.fileURL + config.fileName + '"'
|
||||||
credentialsId: config.repoCreds,
|
|
||||||
variable: "aCreds"
|
|
||||||
)]) {
|
|
||||||
sh 'curl --fail --request PUT --user "$aCreds" --upload-file "' + config.filePath + config.fileName + '" "' + config.fileURL + config.fileName + '"'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user