diff options
author | 2018-07-10 12:28:29 +0100 | |
---|---|---|
committer | 2018-07-10 11:28:29 +0000 | |
commit | 2306721c234c1e1c9c38e896f6752ff396df01f5 (patch) | |
tree | 86581a0406437cdad874d347e41f86e7085c678e /Makefile.release | |
parent | 3b9da823920c7c231febc4be9c949495d8266149 (diff) | |
download | coredns-2306721c234c1e1c9c38e896f6752ff396df01f5.tar.gz coredns-2306721c234c1e1c9c38e896f6752ff396df01f5.tar.zst coredns-2306721c234c1e1c9c38e896f6752ff396df01f5.zip |
Up release to 1.2.0 (#1958)
Automatically submitted.
Diffstat (limited to 'Makefile.release')
-rw-r--r-- | Makefile.release | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.release b/Makefile.release index 1310bc6af..9576bf80f 100644 --- a/Makefile.release +++ b/Makefile.release @@ -86,7 +86,7 @@ tar: .PHONY: github-push upload: @echo Releasing: $(VERSION) - $(eval RELEASE:=$(shell curl -s -d '{"tag_name": "v$(VERSION)", "name": "v$(VERSION)"}' "https://api.github.com/repos/$(GITHUB)/$(NAME)/releases?access_token=${GITHUB_ACCESS_TOKEN}" | grep -m 1 '"id"' | tr -cd '[[:digit:]]')) + @$(eval RELEASE:=$(shell curl -s -d '{"tag_name": "v$(VERSION)", "name": "v$(VERSION)"}' "https://api.github.com/repos/$(GITHUB)/$(NAME)/releases?access_token=${GITHUB_ACCESS_TOKEN}" | grep -m 1 '"id"' | tr -cd '[[:digit:]]')) @echo ReleaseID: $(RELEASE) @for asset in `ls -A release`; do \ curl -o /dev/null -X POST \ @@ -111,7 +111,7 @@ docker-build: tar .PHONY: docker-push docker-push: - docker -u $(DOCKER_LOGIN) -p $(DOCKER_PASSWORD) || exit 1 + @docker -u $(DOCKER_LOGIN) -p $(DOCKER_PASSWORD) || exit 1 @echo Pushing: $(VERSION) to $(DOCKER_IMAGE_NAME) for arch in $(LINUX_ARCH); do \ docker push $(DOCKER_IMAGE_NAME):coredns-$$arch ;\ |