From 3399764c5c5d063cdef12875de9eeacf677dcf6b Mon Sep 17 00:00:00 2001 From: "J. Eric Bukowski" Date: Sun, 28 Jun 2026 11:03:31 -0600 Subject: [PATCH] fix(repo): remove redundant git push from ci:publish --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index cdae2f4..e866547 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ }, "scripts": { "build:packages": "turbo run build --filter './packages/*'", - "ci:publish": "bun run build:packages && changeset publish && git push --follow-tags", + "ci:publish": "bun run build:packages && changeset publish", "ci:version": "changeset version", "clean": "rimraf --glob **/.turbo **/dist **/node_modules", "code:check": "bun install --frozen-lockfile && biome ci . & bun run sort-manifests --check & cspell --dot .",