From 2aa3b605eca204489961a7d0257a5b3fa99ed7fd Mon Sep 17 00:00:00 2001 From: alandavis Date: Wed, 5 May 2021 21:27:38 +0100 Subject: [PATCH] Remove docker push profile [skip ci] (cherry picked from commit 75988a345b84ae14c035b9a1521746dbe113c85f) --- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- scripts/travis/build.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 1e6708d089..3c9721a44d 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -583,7 +583,7 @@ - publish-docker-images + push-docker-images diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index c26e019bec..40959ce5fe 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -157,7 +157,7 @@ - publish-docker-images + push-docker-images diff --git a/scripts/travis/build.sh b/scripts/travis/build.sh index 839cc1b442..df0fad8408 100644 --- a/scripts/travis/build.sh +++ b/scripts/travis/build.sh @@ -7,8 +7,8 @@ pushd "$(dirname "${BASH_SOURCE[0]}")/../../" source "$(dirname "${BASH_SOURCE[0]}")/build_functions.sh" if isBranchBuild && [ "${TRAVIS_BRANCH}" = "master" ] && [ "${TRAVIS_BUILD_STAGE_NAME,,}" = "release" ] ; then - # update ":latest" image tags on remote repositories by using the maven *publish-docker-images* profile - PROFILES="-Ppublish-docker-images" + # update ":latest" image tags on remote repositories by using the maven *push-docker-images* profile + PROFILES="-Ppush-docker-images" else # build the ":latest" image tags locally with the maven *build-docker-images* profile PROFILES="-Pbuild-docker-images"