# Check if we are pushing a tag 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. (Note: Version sync is handled by CI/CD)" fi done