diff --git a/Jenkinsfile b/Jenkinsfile index c8422ba3dc..c19ea1eba5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -100,12 +100,12 @@ pipeline { steps { script { def packageJson = readJSON file: 'package.json' - env.VERSION = BRANCH_NAME + env.VERSION = "${packageJson.version}-build${env.BUILD_ID}a" } sh 'docker-compose build back' sh 'docker images' sh 'docker login --username $CREDENTIALS_USR --password $CREDENTIALS_PSW $REGISTRY' - sh 'docker push registry.verdnatura.es/back:$BRANCH_NAME' + sh 'docker push $IMAGE:$BRANCH_NAME' } } stage('Stack') {