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}