From df1b70a5491caf6b502094cebccf75b47c10333a Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Mon, 11 Mar 2024 14:08:14 -0400 Subject: [PATCH] Add login command to push target --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 4a6e934..a50a262 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,7 @@ image: ## Build image podman build . --tag $(REPOSITORY):v$(SEMAPHORE_VERSION) --build-arg "OPENTOFU_VERSION=$(OPENTOFU_VERSION)" --build-arg "SEMAPHORE_VERSION=$(SEMAPHORE_VERSION)" --build-arg "PYTHON_VERSION=$(PYTHON_VERSION)" --build-arg "SPECTRE_VERSION=$(SPECTRE_VERSION)" push: image ## Build and publish image + podman login $(shell echo $(REPOSITORY) | cut -d '/' -f 1) podman push $(REPOSITORY):v$(SEMAPHORE_VERSION) dev: ## Setup local dev environment