Skip to content

Commit 710bfaa

Browse files
committed
ci: fix major_version in release.yml workflow
1 parent c101d4b commit 710bfaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
version="${{ github.ref_name }}"
2525
major_version=$(echo "$version" | cut -d. -f1)
2626
27-
if [ "$major_version" = "13" ]; then
27+
if [ "$major_version" = "v13" ]; then
2828
echo "tag=legacy" >> $GITHUB_ENV
2929
else
3030
echo "tag=latest" >> $GITHUB_ENV

0 commit comments

Comments
 (0)