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 pushArtifact (Map config) {
|
||||||
def ws = pwd()
|
def ws = pwd()
|
||||||
stage ("Push Artifact") {
|
stage ("Push Artifact: " + config.fileName) {
|
||||||
container ("alpine") {
|
container ("alpine") {
|
||||||
sh "apk add --no-cache curl"
|
sh "apk add --no-cache curl"
|
||||||
withCredentials([usernameColonPassword(
|
withCredentials([usernameColonPassword(
|
||||||
credentialsId: config.repoCreds,
|
credentialsId: config.repoCreds,
|
||||||
variable: "aCreds"
|
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