From 950041c7a523ae0894c8482e3d788b90713329a1 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Thu, 25 Feb 2021 18:40:03 +0300 Subject: [PATCH] Makefile: remove push-to-registry target It is unused and outdated. --- Makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 069eb5e17..1855c41a6 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ IMAGE_REPO=nspccdev/neo-go # All of the targets are phony here because we don't really use make dependency # tracking for files -.PHONY: build deps image image-latest image-push image-push-latest check-version clean-cluster push-tag push-to-registry \ +.PHONY: build deps image image-latest image-push image-push-latest check-version clean-cluster push-tag \ run run-cluster test vet lint fmt cover build: deps @@ -77,12 +77,6 @@ push-tag: git tag ${VERSION} git push origin ${VERSION} -push-to-registry: - @docker login -e ${DOCKER_EMAIL} -u ${DOCKER_USER} -p ${DOCKER_PASS} - @docker tag CityOfZion/${REPONAME}:latest CityOfZion/${REPONAME}:${CIRCLE_TAG} - @docker push CityOfZion/${REPONAME}:${CIRCLE_TAG} - @docker push CityOfZion/${REPONAME} - run: build ${BINARY} node -config-path ./config -${NETMODE}