Skip to content

Commit e86b31e

Browse files
authored
fix: strip ref/tags/ from version string (#301)
1 parent 370b917 commit e86b31e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bazel/tools/wsc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ set -e
55
if [[ -z "${GITHUB_REF}" ]]; then
66
echo "STABLE_ECSACT_SDK_VERSION $(git describe --tags --abbrev=0)"
77
else
8-
echo "STABLE_ECSACT_SDK_VERSION ${GITHUB_REF}"
8+
echo "STABLE_ECSACT_SDK_VERSION ${GITHUB_REF##*/}"
99
fi
1010

0 commit comments

Comments
 (0)