From 764399815334b44f02ed8fc1dcec6ea3ea157212 Mon Sep 17 00:00:00 2001 From: James Mills <1290234+prologic@users.noreply.github.com> Date: Sun, 12 Mar 2023 22:12:12 +1000 Subject: [PATCH] Fix image target --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 815e6bb..098cc25 100644 --- a/Makefile +++ b/Makefile @@ -57,14 +57,14 @@ install: build ## Install zs (cli) to $DESTDIR @install -D -m 755 zs $(DESTDIR)/zs ifeq ($(PUBLISH), 1) -image: generate ## Build the Docker image +image: ## Build the Docker image @docker buildx build \ --build-arg VERSION="$(VERSION)" \ --build-arg COMMIT="$(COMMIT)" \ --build-arg BUILD="$(BUILD)" \ --platform linux/amd64,linux/arm64 --push -t $(IMAGE):$(TAG) . else -image: generate +image: @docker build \ --build-arg VERSION="$(VERSION)" \ --build-arg COMMIT="$(COMMIT)" \ @@ -72,7 +72,7 @@ image: generate -t $(IMAGE):$(TAG) . endif -release: generate ## Release a new version to Gitea +release: ## Release a new version to Gitea @./tools/release.sh fmt: ## Format sources files