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 <[email protected]>
1 parent ef4b639 commit 11a9d7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/Tag.cs

+1-1
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)