From 2d67c3ee115e063261d76d9f7b2c5c79daa08d4c Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Thu, 4 Apr 2024 15:04:12 +0200 Subject: [PATCH] ci: refs #4409 Jenkinsfile fixes --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9f5c8b6..2a53e04 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,7 +26,7 @@ pipeline { def packageJson = readJSON file: 'package.json' env.VERSION = packageJson.version } - sh 'docker login --username $CREDS_USR --password $CREDS_PSW $REGISTRY' + sh 'docker login --username $CREDENTIALS_USR --password $CREDENTIALS_PSW $REGISTRY' sh 'docker-compose push' } }