From 952341dc29c8c75e69eb6b12d44fe72c3ecc39f3 Mon Sep 17 00:00:00 2001 From: alexm Date: Fri, 19 Jul 2024 14:07:03 +0200 Subject: [PATCH] test --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bfb1ea0b6..395a6cbda 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -94,9 +94,8 @@ pipeline { CREDENTIALS = credentials('docker-registry') } steps { - sh 'docker-compose build --build-arg BUILD_ID=$BUILD_ID --parallel' sh 'docker login --username $CREDENTIALS_USR --password $CREDENTIALS_PSW $REGISTRY' - sh 'docker push $IMAGE:$BRANCH_NAME' + sh 'docker push salix-back:$BRANCH_NAME' } } }