From ecc2163b8e8c5ab92197e018231184e98f01eed0 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Fri, 13 Feb 2026 12:08:58 +0100 Subject: [PATCH] chore: remove redundant version sync from pre-push hook --- .husky/pre-push | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.husky/pre-push b/.husky/pre-push index 0d43bcf..f9c08bc 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -4,13 +4,6 @@ while read local_ref local_sha remote_ref remote_sha do if [[ "$remote_ref" == refs/tags/v* ]]; then TAG=${remote_ref#refs/tags/} - echo "🏷️ Tag detected: $TAG, syncing versions..." - pnpm sync-versions "$TAG" - - # Stage the changed files (excluding ignored files like .env) - git add package.json packages/*/package.json apps/*/package.json .env.example - - echo "⚠️ package.json and .env files updated to match tag $TAG." - echo "⚠️ Note: You might need to push again if these changes were not already in your commit/tag." + echo "🏷️ Tag detected: $TAG. (Note: Version sync is handled by CI/CD)" fi done