Skip to content

Commit

Permalink
feat: set tag message (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphi-red authored Feb 27, 2025
1 parent dd10e30 commit 7f5a5b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const release: typeof def = async ({
step("\nCommitting changes...");
await runIfNotDry("git", ["add", "-A"]);
await runIfNotDry("git", ["commit", "-m", `release: ${tag}`]);
await runIfNotDry("git", ["tag", tag]);
await runIfNotDry("git", ["tag", "-a", "-m", tag, tag]);
} else {
console.log("No changes to commit.");
return;
Expand Down

0 comments on commit 7f5a5b5

Please sign in to comment.