From 86a2a48232e014ff663bb9b88278382984a33981 Mon Sep 17 00:00:00 2001 From: Naoki MATSUMOTO Date: Wed, 23 Oct 2024 22:50:23 +0900 Subject: [PATCH] Fix Makefile to push images --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 21bc19a..00e7e19 100755 --- a/Makefile +++ b/Makefile @@ -80,6 +80,7 @@ push-driver: init-buildx-driver --tag ${DRIVER_IMAGE}:${STAGINGVERSION} \ --tag ${DRIVER_IMAGE}:latest \ --builder ${BUILDX_BUILDER} \ + --push \ --platform linux/amd64,linux/arm64 . define example-template @@ -109,6 +110,7 @@ push-example-$(1)-$(2): --tag ${EXAMPLE_IMAGE}-$1-$2:${STAGINGVERSION} \ --tag ${EXAMPLE_IMAGE}-$1-$2:latest \ --builder ${BUILDX_BUILDER} \ + --push \ --platform linux/amd64,linux/arm64 . endef