From f30662a39bbb0d6bc7ca8979db23cd386e33b63a Mon Sep 17 00:00:00 2001 From: elp Date: Thu, 9 Jun 2022 17:53:14 -0700 Subject: [PATCH] chore: Don't put wheel in github releases --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0a8e862..b32bc5b 100644 --- a/Makefile +++ b/Makefile @@ -19,10 +19,9 @@ publish: build ## Publish wheel clean: purge ## Clean everything rm -rf venv -release: # Tag and release on Github +release: publish # Tag and release on Github git tag v$(VERSION) git push origin && git push origin --tags - gh release create v$(VERSION) dist/h2o_nitro_bokeh-$(VERSION)-py3-none-any.whl help: ## List all make tasks @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'