diff --git a/tools/publish-template-tag.ts b/tools/publish-template-tag.ts index afd9864b..63c5040d 100644 --- a/tools/publish-template-tag.ts +++ b/tools/publish-template-tag.ts @@ -77,7 +77,10 @@ if (installExit !== 0) { 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", ["tag", "-a", `template-v${version}`, "-m", `Template v${version}`]], + [ + "git", + ["tag", "-a", `template-v${version}`, "-m", `"Template v${version}"`], + ], ["git", ["push", "origin", "main", "--follow-tags"]], ];