ACS-1464 Rename the Maven *internal* profile into *publish-docker-images*

This commit is contained in:
Cezar.Leahu
2021-04-28 00:43:16 +03:00
parent 878eb3750f
commit 176b1d2c86
3 changed files with 4 additions and 4 deletions

View File

@@ -646,7 +646,7 @@
</profile>
<profile>
<id>internal</id>
<id>publish-docker-images</id>
<!-- publishes "image:latest" on Quay & DockerHub -->
<build>
<plugins>

View File

@@ -157,7 +157,7 @@
</profile>
<profile>
<id>internal</id>
<id>publish-docker-images</id>
<!-- publishes "image:latest" on Quay & DockerHub -->
<build>
<plugins>

View File

@@ -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"