12 lines
380 B
Groovy
12 lines
380 B
Groovy
#!groovy
|
|
|
|
def pushArtifact (Map config) {
|
|
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 + '"'
|
|
}
|
|
} |