Skip to content

Commit b8f02ef

Browse files
committed
Remove login
1 parent bf4f485 commit b8f02ef

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,15 @@ image-arm64:
102102
images: image-amd64 image-arm64 ## Build all docker images and manifest
103103

104104
.PHONY: push-images
105-
push-images: images login ## Push all docker images
105+
push-images: images ## Push all docker images
106106
docker push $(DOCKER_IMAGE_AMD64)
107107
docker push $(DOCKER_IMAGE_ARM64)
108108
docker manifest create --amend $(DOCKER_IMAGE_NAME):$(VERSION) $(DOCKER_IMAGE_AMD64) $(DOCKER_IMAGE_ARM64)
109109
docker manifest create --amend $(DOCKER_IMAGE_NAME):latest $(DOCKER_IMAGE_AMD64) $(DOCKER_IMAGE_ARM64)
110110
docker manifest push --purge $(DOCKER_IMAGE_NAME):$(VERSION)
111111
docker manifest push --purge $(DOCKER_IMAGE_NAME):latest
112112

113-
.PHONY: login
114-
login: ## Login to docker
115-
@docker login
113+
# .PHONY: login
114+
# login: ## Login to docker
115+
# @docker login
116116

0 commit comments

Comments
 (0)