From bd023fe415ca9a276af249db4a0aae40d7fa050a Mon Sep 17 00:00:00 2001 From: aoout Date: Tue, 18 Mar 2025 15:29:54 +0800 Subject: [PATCH] ci: continue --- bump.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bump.ts b/bump.ts index 46903f3..e25df9a 100644 --- a/bump.ts +++ b/bump.ts @@ -59,9 +59,9 @@ if (!dryRun) { // Git 提交 & 打标签 execSync(`git add package.json ${lock ? "package-lock.json" : ""} ${manifest ? "manifest.json" : ""}`); execSync(`git commit -m "chore: bump version to ${newVersion}"`); - execSync(`git tag v${newVersion}`); + execSync(`git tag ${newVersion}`); - console.log(`✅ 版本更新成功,已创建 Git 标签 v${newVersion}`); + console.log(`✅ 版本更新成功,已创建 Git 标签 ${newVersion}`); } else { console.log("🟡 预览模式:未实际修改文件"); }