diff --git a/Jenkinsfile-Promoter b/Jenkinsfile-Promoter index e03bcd6..bb20923 100644 --- a/Jenkinsfile-Promoter +++ b/Jenkinsfile-Promoter @@ -33,8 +33,8 @@ pipeline { echo "Promoting image tag ${params.SOURCE_TAG} to ${NEW_PERM_TAG} on ${REGISTRY}" // 1. Tag the specific local image with the permanent tag - sh "docker tag chore-app-frontend:${params.SOURCE_TAG} ${REPO_VUE}:${NEW_PERM_TAG}" - sh "docker tag chore-app-backend:${params.SOURCE_TAG} ${REPO_FLASK}:${NEW_PERM_TAG}" + sh "docker tag chore-app-frontend:${params.SOURCE_TAG} ${REPO_FRONTEND}:${NEW_PERM_TAG}" + sh "docker tag chore-app-backend:${params.SOURCE_TAG} ${REPO_BACKEND}:${NEW_PERM_TAG}" // 2. Push the newly tagged images sh "docker push ${REPO_FRONTEND}:${NEW_PERM_TAG}"