From 20146063ef4425333ce4ab757fbcff8a5a90f06a Mon Sep 17 00:00:00 2001 From: Frank Schroeder Date: Thu, 25 Oct 2018 20:58:55 +0200 Subject: [PATCH] build: goreleaser can now create multiple Docker tags --- Makefile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 0ccfd2628..ef34c1106 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ pkg: build test # later targets can pick up the new tag value. release: $(MAKE) tag - $(MAKE) preflight docker-test gorelease homebrew docker-aliases + $(MAKE) preflight docker-test gorelease homebrew # preflight runs some checks before a release preflight: @@ -91,14 +91,6 @@ gorelease: homebrew: build/homebrew.sh $(LAST_TAG) -# docker-aliases creates aliases for the docker containers -# since goreleaser doesn't handle that properly yet -docker-aliases: - docker tag fabiolb/fabio:$(VERSION)-$(GOVERSION) magiconair/fabio:$(VERSION)-$(GOVERSION) - docker tag fabiolb/fabio:$(VERSION)-$(GOVERSION) magiconair/fabio:latest - docker push magiconair/fabio:$(VERSION)-$(GOVERSION) - docker push magiconair/fabio:latest - # docker-test runs make test in a Docker container with # pinned versions of the external dependencies #