forked from TrueCloudLab/neoneo-go
Makefile: remove push-to-registry target
It is unused and outdated.
This commit is contained in:
parent
dc610cdb7c
commit
950041c7a5
1 changed files with 1 additions and 7 deletions
8
Makefile
8
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
|
# All of the targets are phony here because we don't really use make dependency
|
||||||
# tracking for files
|
# 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
|
run run-cluster test vet lint fmt cover
|
||||||
|
|
||||||
build: deps
|
build: deps
|
||||||
|
@ -77,12 +77,6 @@ push-tag:
|
||||||
git tag ${VERSION}
|
git tag ${VERSION}
|
||||||
git push origin ${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
|
run: build
|
||||||
${BINARY} node -config-path ./config -${NETMODE}
|
${BINARY} node -config-path ./config -${NETMODE}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue