fix(husky): auto-push current branch to keep synced after version bump

This commit is contained in:
2026-02-27 19:37:00 +01:00
parent 98fb6e363f
commit b4b81a8315

View File

@@ -32,10 +32,14 @@ do
echo "✅ Tag $TAG has been updated locally with synced versions."
echo "🚀 Auto-pushing updated tag..."
# Push the updated tag directly (using --no-verify to avoid recursion)
# Push the updated branch and tag directly (using --no-verify to avoid recursion)
CURRENT_BRANCH=$(git branch --show-current)
if [ -n "$CURRENT_BRANCH" ]; then
git push origin "$CURRENT_BRANCH" --no-verify
fi
git push origin "$TAG" --force --no-verify
echo "✨ Success! The hook synchronized the versions and pushed the updated tag for you."
echo "✨ Success! The hook synchronized the versions, committed to branch, and pushed the updated tag for you."
echo " Note: The original push command was aborted in favor of the auto-push. This is normal."
exit 1 # We MUST exit 1 here to stop git from proceeding with the original push which would fail
else