We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f6609e commit eabd4a1Copy full SHA for eabd4a1
.github/workflows/ci.yml
@@ -113,6 +113,10 @@ jobs:
113
114
# Extract plugin version using manifest tool (handles git versioning)
115
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
120
SHORT_SHA=$(echo "${{ github.sha }}" | cut -c1-7)
121
122
echo ""
0 commit comments