We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c9215f commit 8253f16Copy full SHA for 8253f16
.github/workflows/release.yml
@@ -27,6 +27,8 @@ jobs:
27
- name: Set version from tag
28
run: |
29
VERSION=${GITHUB_REF#refs/tags/}
30
+ # Remove 'v' prefix if present
31
+ VERSION=${VERSION#v}
32
echo "BLADE_VERSION=$VERSION" >> $GITHUB_ENV
33
echo "Building version: $VERSION"
34
0 commit comments