Skip to content

Commit 4e54583

Browse files
authored
ci: fix tag commit for template sync (#135)
1 parent 62d50e4 commit 4e54583

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/publish-template-tag.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,10 @@ if (installExit !== 0) {
7777
const commands: [string, string[]][] = [
7878
["git", ["add", "template/package.json", "template/package-lock.json"]],
7979
["git", ["commit", "-m", `"chore: sync template to v${version} [skip ci]"`]],
80-
["git", ["tag", "-a", `template-v${version}`, "-m", `Template v${version}`]],
80+
[
81+
"git",
82+
["tag", "-a", `template-v${version}`, "-m", `"Template v${version}"`],
83+
],
8184
["git", ["push", "origin", "main", "--follow-tags"]],
8285
];
8386

0 commit comments

Comments
 (0)