From 20385b10a27c27fa6e71716b5a8770c360b19be4 Mon Sep 17 00:00:00 2001 From: David Blass Date: Mon, 15 Jul 2024 21:25:46 -0400 Subject: [PATCH] ci: fix publish script --- ark/repo/publish.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ark/repo/publish.ts b/ark/repo/publish.ts index fa8aba4a54..ef86a746ef 100644 --- a/ark/repo/publish.ts +++ b/ark/repo/publish.ts @@ -13,7 +13,7 @@ const publishPackage = (pkg: ArkPackage, alias?: string) => { shell(`git tag ${tagName}`) tagsToPublish.push(tagName) - shell("pnpm publish", { cwd: pkg.path }) + shell("pnpm publish --no-git-checks", { cwd: pkg.path }) if (alias) rewritePackageJsonName(pkg.packageJsonPath, pkg.name) }