declarative pipelines require all wor to be in script block

This commit is contained in:
Hyatt 2022-02-18 12:32:52 -06:00
parent 361a620085
commit 276db59979
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -1,11 +1,11 @@
#!groovy #!groovy
def pushArtifact (Map config) { def pushArtifact (Map config) {
def ws = pwd()
stage ("Push Artifact: " + config.fileName) { stage ("Push Artifact: " + config.fileName) {
steps { steps {
container ("alpine") { container ("alpine") {
script { script {
def ws = pwd()
sh "apk add --no-cache curl" sh "apk add --no-cache curl"
withCredentials([usernameColonPassword( withCredentials([usernameColonPassword(
credentialsId: config.repoCreds, credentialsId: config.repoCreds,