Skip to content

Commit 7f5a5b5

Browse files
authored
feat: set tag message (#67)
1 parent dd10e30 commit 7f5a5b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/release.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export const release: typeof def = async ({
106106
step("\nCommitting changes...");
107107
await runIfNotDry("git", ["add", "-A"]);
108108
await runIfNotDry("git", ["commit", "-m", `release: ${tag}`]);
109-
await runIfNotDry("git", ["tag", tag]);
109+
await runIfNotDry("git", ["tag", "-a", "-m", tag, tag]);
110110
} else {
111111
console.log("No changes to commit.");
112112
return;

0 commit comments

Comments
 (0)