build-toolbox-image.sh: Only publish the latest tag on the appropriate branch

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7816>
This commit is contained in:
Jordan Petridis 2024-11-01 23:52:23 +02:00 committed by GStreamer Marge Bot
parent 22a83c8db6
commit 2ce8a1aea9

View File

@ -147,9 +147,13 @@ if ! check_image_base; then
build_container
podman push "$TOOLBOX_IMAGE"
podman push "$TOOLBOX_LATEST"
if [ "$GST_UPSTREAM_BRANCH" == "$CI_COMMIT_BRANCH" ]; then
podman push "$TOOLBOX_LATEST"
fi
fi
echo "Create your toolbox with either of the following commands"
echo " $ toolbox create gst-$GST_UPSTREAM_BRANCH --image $TOOLBOX_LATEST"
echo " $ toolbox create gst-$TOOLBOX_BRANCH --image $TOOLBOX_IMAGE"
if [ "$GST_UPSTREAM_BRANCH" == "$CI_COMMIT_BRANCH" ]; then
echo " $ toolbox create gst-$GST_UPSTREAM_BRANCH --image $TOOLBOX_LATEST"
fi