We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aceba25 commit 1bb3e84Copy full SHA for 1bb3e84
.github/workflows/version_bumper.sh
@@ -25,7 +25,7 @@ if [[ $version_line =~ $regex ]]; then
25
updated_version=${BASH_REMATCH[1]}$incremented_number
26
27
# Update the version in the pyproject.toml file
28
- sed -i '' "s/version = \"${BASH_REMATCH[1]}${last_number}\"/version = \"$updated_version\"/" "$file"
+ sed -i "s/version = \"${BASH_REMATCH[1]}${last_number}\"/version = \"$updated_version\"/" "$file"
29
30
echo "Version updated to $updated_version in $file"
31
else
0 commit comments