From 276db599790a903ef85cbf8a403d97b67ce7ec58 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Fri, 18 Feb 2022 12:32:52 -0600 Subject: [PATCH] declarative pipelines require all wor to be in script block --- vars/declarativeFunctions.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/declarativeFunctions.groovy b/vars/declarativeFunctions.groovy index 379c90d..a152eb6 100644 --- a/vars/declarativeFunctions.groovy +++ b/vars/declarativeFunctions.groovy @@ -1,11 +1,11 @@ #!groovy def pushArtifact (Map config) { - def ws = pwd() stage ("Push Artifact: " + config.fileName) { steps { container ("alpine") { script { + def ws = pwd() sh "apk add --no-cache curl" withCredentials([usernameColonPassword( credentialsId: config.repoCreds,