From e1d86550f3b7f3b769e9c0518562d03096218393 Mon Sep 17 00:00:00 2001 From: Andriy Dzikh Date: Fri, 21 May 2021 09:31:45 -0700 Subject: [PATCH] Create make targets for hack/release_notes.sh and hack/update_contributions.sh. --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 8a6a34a83f..d76fdc3ebb 100644 --- a/Makefile +++ b/Makefile @@ -776,6 +776,14 @@ release-minikube: out/minikube checksum ## Minikube release gsutil cp out/minikube-$(GOOS)-$(GOARCH) $(MINIKUBE_UPLOAD_LOCATION)/$(MINIKUBE_VERSION)/minikube-$(GOOS)-$(GOARCH) gsutil cp out/minikube-$(GOOS)-$(GOARCH).sha256 $(MINIKUBE_UPLOAD_LOCATION)/$(MINIKUBE_VERSION)/minikube-$(GOOS)-$(GOARCH).sha256 +.PHONY: release-notes +release-notes: + hack/release_notes.sh + +.PHONY: update-leaderboard +update-leaderboard: + hack/update_contributions.sh + out/docker-machine-driver-kvm2: out/docker-machine-driver-kvm2-amd64 $(if $(quiet),@echo " CP $@") $(Q)cp $< $@