From 0f74b74d1e421bd86bc611f50dffed57d6dbff51 Mon Sep 17 00:00:00 2001 From: Danny Grove Date: Tue, 5 Aug 2025 08:34:04 -0700 Subject: [PATCH] Add make target to push to container registry --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index f01f347..89fecbf 100644 --- a/Makefile +++ b/Makefile @@ -150,6 +150,9 @@ build-%: images/tools/Containerfile | out load-%: build-% $(call import-container,$*) +push-%: build-% load-% + docker push $(REGISTRY)/$*:$(VERSION) + out/tools-image.digest: out build-tools .PHONY: plan