From 4b6fe959505cd7691ef74ce61be8015e31b77df3 Mon Sep 17 00:00:00 2001 From: Timur Galeev <32696429+timurgaleev@users.noreply.github.com> Date: Mon, 5 Oct 2020 15:02:56 +0200 Subject: [PATCH] Update build.sh --- build.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/build.sh b/build.sh index 4d3e507..3da6149 100755 --- a/build.sh +++ b/build.sh @@ -203,6 +203,14 @@ _build() { fi } +_bump() { + date > BUMP + + mkdir build + + echo "bump" > build/commit_message.txt +} + _run() { case ${CMD} in clean) @@ -225,6 +233,9 @@ _run() { chart_build chart_push ;; + bump) + _bump + ;; *) _build esac