From 66d89c07ea85c68be4ed3e089b56db8413b2375d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Ma=C5=82ek?= Date: Thu, 25 Mar 2021 13:34:48 +0100 Subject: [PATCH] Use only 10 SHA characters for dev builds instead of 40 --- ci/push-helm-chart.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/push-helm-chart.sh b/ci/push-helm-chart.sh index a9a09ec112..4fdb85e274 100755 --- a/ci/push-helm-chart.sh +++ b/ci/push-helm-chart.sh @@ -5,7 +5,7 @@ readonly ROOT_DIR="$(dirname "$(dirname "${0}")")" source "${ROOT_DIR}"/ci/_build_functions.sh fetch_current_branch -VERSION="$(git describe --tags --abbrev=40)" +VERSION="$(git describe --tags --abbrev=10)" readonly VERSION="${VERSION#v}" pushd "${ROOT_DIR}" || exit 1