Skip to content

Commit f994601

Browse files
author
winjo
committed
chore: fix release script
1 parent dc3453d commit f994601

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/release.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ invoke(async () => {
124124
const { stdout } = await exec('git diff', { stdio: 'pipe' });
125125
if (stdout) {
126126
await exec('git add -A');
127-
await exec(`git commit -m release: v${targetVersion}`);
127+
await exec(`git commit -m build:\\ v${targetVersion}`);
128128
} else {
129129
console.log('无变更文件');
130130
}
@@ -139,7 +139,7 @@ invoke(async () => {
139139
await exec(`git push origin refs/tags/v${targetVersion}`);
140140
await exec('git push');
141141

142-
signale.success('发布完成');
142+
signale.success('\n发布完成');
143143
});
144144

145145
function getPkgRoot(pkg) {

0 commit comments

Comments
 (0)