Skip to content

Commit

Permalink
ci: fix major_version in release.yml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DorianMazur committed Nov 6, 2024
1 parent c101d4b commit 710bfaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
version="${{ github.ref_name }}"
major_version=$(echo "$version" | cut -d. -f1)
if [ "$major_version" = "13" ]; then
if [ "$major_version" = "v13" ]; then
echo "tag=legacy" >> $GITHUB_ENV
else
echo "tag=latest" >> $GITHUB_ENV
Expand Down

0 comments on commit 710bfaa

Please sign in to comment.