Skip to content

Commit

Permalink
fix: version bump action
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed May 26, 2023
1 parent 994acf5 commit ce50140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/bump-version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
newVersion="$RELEASE_VERSION_MAJOR.$RELEASE_VERSION_MINOR.$((RELEASE_VERSION_PATCH+1))"-SNAPSHOT
# replace every occurrence of =$oldVersion with =$newVersion
grep -rlz "$oldVersion" . --exclude=\*.{sh,bin} | xargs sed -i 's/$oldVersion/$newVersion/g'
grep -rlz "$oldVersion" . --exclude=\*.{sh,bin} | xargs sed -i "s/$oldVersion/$newVersion/g"
echo "Bumped the version from $oldVersion to $newVersion"
Expand Down

0 comments on commit ce50140

Please sign in to comment.