adds support for better stage names

This commit is contained in:
Hyatt 2022-01-20 16:06:46 -06:00
parent ea0ed188c1
commit abb01e732f
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

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