Skip to content

Commit 4062ba1

Browse files
committed
ci(ct): fix app image maintenance script missing base image tag
We determine the fixed base image tag before, but it wasn't handed to the build as a property.
1 parent de6a35d commit 4062ba1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/scripts/containers/maintain-application.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ for BRANCH in "$@"; do
148148
# Build the application image, but skip the configbaker image (that's a different job)!
149149
# shellcheck disable=SC2046
150150
mvn -Pct -f . deploy -Ddocker.noCache -Ddocker.platforms="${PLATFORMS}" \
151-
-Dconf.skipBuild -Ddocker.imagePropertyConfiguration=override $TAG_OPTIONS
151+
-Dconf.skipBuild -Dbase.image="${BASE_IMAGE_REF}" \
152+
-Ddocker.imagePropertyConfiguration=override $TAG_OPTIONS \
152153
$( if (( DAMP_RUN )); then echo "-Ddocker.skip.push -Ddocker.skip.tag"; fi )
153154
else
154155
echo "Skipping Maven build as requested by DRY_RUN=1"

0 commit comments

Comments
 (0)