From 8b4fe2b482ba82bd27012005d874fe59d1186cbf Mon Sep 17 00:00:00 2001 From: aMediocreDad Date: Mon, 22 Jul 2024 00:43:53 +0200 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=91=B7=20Fix=20release=20script?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/release.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/release.ts b/tools/release.ts index efa97e45..3669e112 100644 --- a/tools/release.ts +++ b/tools/release.ts @@ -24,7 +24,7 @@ if (exitCode !== 2) { await $`git checkout --detach`; await $`git add --force forbidden-lands.js forbidden-lands.css`; -await $`git commit -m chore\(release\): ${tag}`; +await $`git commit -m "chore(release): ${tag}"`; const { stdout } = await $`bunx changeset tag`.nothrow().quiet(); console.log(stdout);