Skip to content

Commit

Permalink
local-build: build-and-upload-payload is not quay.io specific
Browse files Browse the repository at this point in the history
Let's just print "to the registry" instead of printing "to quay.io", as
the registry used is not tied to quay.io.

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
  • Loading branch information
fidencio committed Apr 5, 2023
1 parent 13929fc commit e81b8b8
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -20,7 +20,7 @@ IMAGE_TAG="${REGISTRY}:kata-containers-$(git rev-parse HEAD)-$(uname -m)"
echo "Building the image"
docker build --tag ${IMAGE_TAG} .

echo "Pushing the image to quay.io"
echo "Pushing the image to the registry"
docker push ${IMAGE_TAG}

if [ -n "${TAG}" ]; then
Expand All @@ -30,7 +30,7 @@ if [ -n "${TAG}" ]; then

docker build --tag ${ADDITIONAL_TAG} .

echo "Pushing the image ${ADDITIONAL_TAG} to quay.io"
echo "Pushing the image ${ADDITIONAL_TAG} to the registry"
docker push ${ADDITIONAL_TAG}
fi

Expand Down

0 comments on commit e81b8b8

Please sign in to comment.