Skip to content

Commit ce50140

Browse files
fix: version bump action
1 parent 994acf5 commit ce50140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/bump-version/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
newVersion="$RELEASE_VERSION_MAJOR.$RELEASE_VERSION_MINOR.$((RELEASE_VERSION_PATCH+1))"-SNAPSHOT
3232
3333
# replace every occurrence of =$oldVersion with =$newVersion
34-
grep -rlz "$oldVersion" . --exclude=\*.{sh,bin} | xargs sed -i 's/$oldVersion/$newVersion/g'
34+
grep -rlz "$oldVersion" . --exclude=\*.{sh,bin} | xargs sed -i "s/$oldVersion/$newVersion/g"
3535
3636
echo "Bumped the version from $oldVersion to $newVersion"
3737

0 commit comments

Comments
 (0)