Skip to content

Commit 11a9d7f

Browse files
committed
enhance: force using --no-sign to ignore tag.gpgsign configuration while creating lightweight tag
Signed-off-by: leo <longshuang@msn.cn>
1 parent ef4b639 commit 11a9d7f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Commands/Tag.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public static bool Add(string repo, string name, string basedOn, Models.ICommand
99
var cmd = new Command();
1010
cmd.WorkingDirectory = repo;
1111
cmd.Context = repo;
12-
cmd.Args = $"tag {name} {basedOn}";
12+
cmd.Args = $"tag --no-sign {name} {basedOn}";
1313
cmd.Log = log;
1414
return cmd.Exec();
1515
}

0 commit comments

Comments
 (0)