adds support for better stage names
This commit is contained in:
parent
ea0ed188c1
commit
abb01e732f
@ -88,14 +88,14 @@ def buildContainer (Map config, List buildArg = []) {
|
||||
|
||||
def pushArtifact (Map config) {
|
||||
def ws = pwd()
|
||||
stage ("Push Artifact") {
|
||||
stage ("Push Artifact: " + config.fileName) {
|
||||
container ("alpine") {
|
||||
sh "apk add --no-cache curl"
|
||||
withCredentials([usernameColonPassword(
|
||||
credentialsId: config.repoCreds,
|
||||
variable: "aCreds"
|
||||
)]) {
|
||||
sh 'curl --request PUT --user "$aCreds" --upload-file "' + config.fileName + '" "' + config.filePath + '"'
|
||||
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