Skip to content

Commit eabd4a1

Browse files
committed
add version prefix
Signed-off-by: Stavros Foteinopoulos <stafot@gmail.com>
1 parent 1f6609e commit eabd4a1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ jobs:
113113
114114
# Extract plugin version using manifest tool (handles git versioning)
115115
PLUGIN_VERSION=$(build/bin/manifest version)
116+
# Add 'v' prefix for consistency with other plugin packages
117+
if [[ ! $PLUGIN_VERSION == v* ]]; then
118+
PLUGIN_VERSION="v${PLUGIN_VERSION}"
119+
fi
116120
SHORT_SHA=$(echo "${{ github.sha }}" | cut -c1-7)
117121
118122
echo ""

0 commit comments

Comments
 (0)