From 4bdbfc2de0cea36e1b4c200ebed2d95ad6dfb5e2 Mon Sep 17 00:00:00 2001 From: alandavis Date: Wed, 5 May 2021 21:10:40 +0100 Subject: [PATCH] ACS-1464 Rename the Maven *internal* profile into *publish-docker-images* (cherry picked from commit 176b1d2c866a17a4f10050286fdaf0b746d034db) --- 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 348447596a..a358e10a02 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -646,7 +646,7 @@ - internal + publish-docker-images diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 4bcc395431..c26e019bec 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -157,7 +157,7 @@ - internal + publish-docker-images diff --git a/scripts/travis/build.sh b/scripts/travis/build.sh index 7fa00ee626..3bf2f6f48e 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 *internal* profile - PROFILES="-Pinternal" + # update ":latest" image tags on remote repositories by using the maven *publish-docker-images* profile + PROFILES="-Ppublish-docker-images" else # build the ":latest" image tags locally with the maven *build-docker-images* profile PROFILES="-Pbuild-docker-images"