Skip to content

Commit 91ffb74

Browse files
committed
Fix bumping version name
1 parent 8fdcf98 commit 91ffb74

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ jobs:
7777
MAJOR=${VERSION_PARTS[0]}
7878
MINOR=${VERSION_PARTS[1]}
7979
PATCH=${VERSION_PARTS[2]}
80-
NEW_VERSION="$CURRENT_VERSION"
80+
PATCH=$((PATCH + 1))
81+
82+
NEW_VERSION="$MAJOR.$MINOR.$PATCH"
8183
NEW_BUILD_NUMBER=$((CURRENT_BUILD_NUMBER + 1))
8284
8385
echo "version=$NEW_VERSION" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)