From 3bc0b24b2bfbc8df1d67f02607d13380318d68ee Mon Sep 17 00:00:00 2001 From: Erick Daniszewski Date: Mon, 22 Oct 2018 14:56:47 -0400 Subject: [PATCH] fix target for tagging --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 891c382..2ef3a0c 100644 --- a/Makefile +++ b/Makefile @@ -33,8 +33,8 @@ all: python go ## Build source for all supported languages .PHONY: github-tag github-tag: ## Create and push a tag with the current version - git tag -a ${PKG_VERSION} -m "${PKG_NAME} version ${PKG_VERSION}" - git push -u origin ${PKG_VERSION} + git tag -a ${PKG_VER} -m "${PKG_NAME} version ${PKG_VER}" + git push -u origin ${PKG_VER} .PHONY: py-publish py-publish: ## Build and publish the python package to PyPi