From 2447c966e34bccd6af050f4489d6b9c1e0539cc1 Mon Sep 17 00:00:00 2001 From: Francia Csaba Date: Wed, 20 Dec 2023 13:48:29 +0100 Subject: [PATCH] [#13] use quotes around 'GITEA_CREDS' --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c28f8cc..8d451e2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,7 +21,7 @@ pipeline { steps { echo 'Pushing image to registry' script { - docker.withRegistry(REGISTRY_URL, GITEA_CREDS){ + docker.withRegistry(REGISTRY_URL, 'GITEA_CREDS'){ docker.image("${OWNER}/${IMAGE_NAME}:${TAG}").push() } }