Skip to content

Commit

Permalink
Dont print manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
vmilosevic authored Oct 16, 2024
1 parent aea0953 commit 39baff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/build-docker-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ build_and_push() {
local dockerfile=$2
local from_image=$3

if docker manifest inspect $image_name:$DOCKER_TAG; then
if docker manifest inspect $image_name:$DOCKER_TAG > /dev/null; then
echo "Image $image_name:$DOCKER_TAG already exists"
else
echo "Building image $image_name:$DOCKER_TAG"
Expand Down

0 comments on commit 39baff6

Please sign in to comment.