From 1ad8ade2d69d97a16d596cfc4dd6d3c52abca9de Mon Sep 17 00:00:00 2001 From: MarioCadenas Date: Wed, 18 Feb 2026 18:53:16 +0100 Subject: [PATCH] fix: publish template script --- tools/publish-template-tag.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/publish-template-tag.ts b/tools/publish-template-tag.ts index 569be6d5..316539e6 100644 --- a/tools/publish-template-tag.ts +++ b/tools/publish-template-tag.ts @@ -76,7 +76,7 @@ if (installExit !== 0) { // 3. Git add, commit, tag, push const commands: [string, string[]][] = [ ["git", ["add", "template/package.json", "template/package-lock.json"]], - ["git", ["commit", "-m", `chore: sync template to v${version} [skip ci]`]], + ["git", ["commit", "-m", `"chore: sync template to v${version} [skip ci]"`]], ["git", ["tag", `template-v${version}`]], ["git", ["push", "origin", "main", "--follow-tags"]], ];