From 630dd18c4684932caac453a418e9ff70631707b7 Mon Sep 17 00:00:00 2001 From: Jian Qiu Date: Mon, 24 Jan 2022 17:42:21 +0800 Subject: [PATCH] Fix version file (#113) Signed-off-by: Jian Qiu --- Makefile | 2 +- VERSION.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c0ce4843f..b63232629 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ build-bin: .PHONY: release release: @if [[ -z "${VERSION}" ]]; then VERSION=`cat VERSION.txt`; echo $$VERSION; fi; \ - git tag v$$VERSION && git push upstream --tags + git tag $$VERSION && git push upstream --tags .PHONY: build-krew build-krew: krew-tools diff --git a/VERSION.txt b/VERSION.txt index 6c6aa7cb0..9ff151c5b 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.1.0 \ No newline at end of file +v0.1.0 \ No newline at end of file