Skip to content

Commit

Permalink
change wording in release commit
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh committed Feb 16, 2023
1 parent 5cb5a10 commit 5ecf680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ read -p "Creating new release for $TAG. Do you want to continue? [Y/n] " prompt
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
python scripts/prepare_changelog.py
git add -A
git commit -m "Bump version to $TAG for release" || true && git push
git commit -m "chore: bump version to $TAG for release" || true && git push
echo "Creating new git tag $TAG"
git tag "$TAG" -m "$TAG"
git push --tags
Expand Down

0 comments on commit 5ecf680

Please sign in to comment.