From 566581f8aae8aff21d72b0746628e4c041792d9d Mon Sep 17 00:00:00 2001 From: alexm Date: Fri, 19 Jul 2024 13:49:57 +0200 Subject: [PATCH] try --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 05b99bfea..6dce0ec97 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -91,9 +91,10 @@ pipeline { } stage('Push image') { steps { + sh 'docker-compose build --build-arg BUILD_ID=$BUILD_ID --parallel' sh 'docker login --username $CREDS_USR --password $CREDS_PSW $REGISTRY' - sh 'docker tag $IMAGE:$TAG $IMAGE:$BRANCH_NAME' - sh 'docker push $IMAGE:$BRANCH_NAME' + // sh 'docker tag $IMAGE:$TAG $IMAGE:$BRANCH_NAME' + // sh 'docker push $IMAGE:$BRANCH_NAME' } } }