diff --git a/Makefile b/Makefile index 9d439d48..8c5b6559 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ endif # Defaults REGISTRY ?= ghcr.io -REPOSITORY ?= capsuleproject/capsule +REPOSITORY ?= projectcapsule/capsule GIT_HEAD_COMMIT ?= $(shell git rev-parse --short HEAD) GIT_TAG_COMMIT ?= $(shell git rev-parse --short $(VERSION)) GIT_MODIFIED_1 ?= $(shell git diff $(GIT_HEAD_COMMIT) $(GIT_TAG_COMMIT) --quiet && echo "" || echo ".dev") @@ -217,7 +217,6 @@ ko-publish-capsule: ko-login ## Build and publish kyvernopre image (with ko) @LD_FLAGS=$(LD_FLAGS) KOCACHE=$(KOCACHE) KO_DOCKER_REPO=$(CAPSULE_IMG) \ $(KO) build ./ --bare --tags=$(KO_TAGS) - .PHONY: ko-publish-all ko-publish-all: ko-publish-capsule @@ -283,7 +282,6 @@ PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST)))) define go-install-tool @[ -f $(1) ] || { \ set -e ;\ -echo "Installing $(2)" ;\ GOBIN=$(PROJECT_DIR)/bin go install $(2) ;\ } endef