diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 46e80dc..a544436 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -84,8 +84,8 @@ jobs: patch=$(echo $latest_tag | cut -d '.' -f 3) build=$(echo $latest_tag | cut -d '.' -f 4) - new_minor=$((patch + 1)) - new_version="$major.$new_minor.$patch.$build" + new_minor=$((minor + 1)) + new_version="$major.$new_minor.0.$build" echo "New version: $new_version" echo "new_tag=$new_version" >> $GITHUB_OUTPUT echo "prev_tag=$latest_tag" >> $GITHUB_OUTPUT