Skip to content

Commit

Permalink
Fixed double quotes on version to meet pre-commit standard.
Browse files Browse the repository at this point in the history
  • Loading branch information
Knucklessg1 committed May 30, 2024
1 parent 4912914 commit b800251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
echo -e "Old Version: $CURRENT_RELEASE\nNew Version: $NEW_VERSION"
sed -i "s/CURRENT_VERSION=.*$/CURRENT_VERSION=$NEW_VERSION/" $GITHUB_ENV
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
sed -i "s/__version__ = .*$/__version__ = '$NEW_VERSION'/" $FOLDER_NAME/version.py
sed -i "s/__version__ = .*$/__version__ = \"$NEW_VERSION\"/" $FOLDER_NAME/version.py
sed -i "s/^\*Version: [0-9][0-9]*.[0-9][0-9]*.[0-9][0-9]*\*.*$/*Version: $NEW_VERSION*/" README.md
- name: Commit Repository Changes
Expand Down

0 comments on commit b800251

Please sign in to comment.