ci: use shorter version string to allow long JIRA branch names

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4183
GitOrigin-RevId: 8ceab85eca6122fcc51ab9351ee4818b4d8ae4c1
This commit is contained in:
Divi 2022-04-14 14:30:15 +05:30 committed by hasura-bot
parent 893fb8cd92
commit 08b878bc9f

View File

@ -34,4 +34,4 @@ VERSION="${GIT_TAG_EXACT}"
test -n "$VERSION" || VERSION="${GIT_BRANCH}-${GIT_SHA}${GIT_DIRTY}"
VERSION="$(echo $VERSION | tr -cd '[[:alnum:]]._-')"
echo "$VERSION"
echo "${VERSION:0:50}"