We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2b1676 commit 3bbdddeCopy full SHA for 3bbddde
1 file changed
bump-version.sh
@@ -27,14 +27,7 @@ fi
27
NEW_TAG="v$MAJOR.$MINOR.$PATCH"
28
29
# Ask for confirmation
30
-echo "Create and push tag: $NEW_TAG? (Press any key to confirm, 'n' to cancel)"
31
-read -r -n 1 CONFIRM
32
-
33
-# Check if the input is 'n' or 'N'
34
-if [[ "$CONFIRM" == ^[Nn]$ ]]; then
35
- echo "🚫 Tag creation canceled."
36
- exit 1
37
-fi
+echo "Create and push tag: $NEW_TAG"
38
39
# Commit changes with a message
40
COMMIT_MESSAGE=${2:-"Release $NEW_TAG"} # Default message if none provided
0 commit comments