Merge pull request #258 from dims/fix-oops-in-docker-push-parameter

oops! fix the image name when we run docker push
This commit is contained in:
k8s-ci-robot 2018-08-02 16:02:27 -07:00 committed by GitHub
commit cfbc441ba6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ endif
push: .push-$(ARCH) push: .push-$(ARCH)
.push-$(ARCH): .container-$(ARCH) .push-$(ARCH): .container-$(ARCH)
docker push $(IMAGE):$(TAG) docker push $(MULTI_ARCH_IMG):$(TAG)
clean: $(addprefix sub-clean-,$(ALL_ARCH)) clean: $(addprefix sub-clean-,$(ALL_ARCH))
docker rmi -f $(IMAGE):$(TAG) || true docker rmi -f $(IMAGE):$(TAG) || true

View File

@ -68,7 +68,7 @@ endif
push: .push-$(ARCH) push: .push-$(ARCH)
.push-$(ARCH): .container-$(ARCH) .push-$(ARCH): .container-$(ARCH)
docker push $(IMAGE):$(TAG) docker push $(MULTI_ARCH_IMG):$(TAG)
clean: $(addprefix sub-clean-,$(ALL_ARCH)) clean: $(addprefix sub-clean-,$(ALL_ARCH))
docker rmi -f $(IMAGE):$(TAG) || true docker rmi -f $(IMAGE):$(TAG) || true