Skip to content

Commit

Permalink
Fix travis build and manifest push
Browse files Browse the repository at this point in the history
Signed-off-by: Matevz Mihalic <matevz.mihalic@gmail.com>
  • Loading branch information
matevzmihalic authored and alexellis committed Nov 24, 2019
1 parent 8dff9cb commit 92437d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -17,7 +17,7 @@ install:
- echo "Please don't go get"

script:
- make build
- TAG=${TRAVIS_TAG:-latest} make build

before_deploy:
- echo "${DOCKER_PASSWORD}" | docker login -u "${DOCKER_USERNAME}" --password-stdin
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -28,7 +28,7 @@ push-%:
manifest: ## Create and push Docker manifest to combine all architectures in multi-arch Docker image
docker manifest create --amend $(DOCKER_REPOSITORY):$(TAG) $(addprefix $(DOCKER_REPOSITORY):$(TAG)-,$(ARCHS))
$(MAKE) $(addprefix manifest-annotate-,$(ARCHS))
docker manifest push $(DOCKER_REPOSITORY):$(TAG)
docker manifest push -p $(DOCKER_REPOSITORY):$(TAG)

.PHONY: manifest-annotate-%
manifest-annotate-%:
Expand Down

0 comments on commit 92437d8

Please sign in to comment.