From abb01e732f067bf7b397ada391370851f30dcf39 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Thu, 20 Jan 2022 16:06:46 -0600 Subject: [PATCH] adds support for better stage names --- vars/functions.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vars/functions.groovy b/vars/functions.groovy index fb046db..97ad8ba 100644 --- a/vars/functions.groovy +++ b/vars/functions.groovy @@ -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 + '"' } } }