enhance: force using --no-sign to ignore tag.gpgsign configuration while creating lightweight tag

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2025-05-13 09:24:00 +08:00
parent ef4b639f8e
commit 11a9d7fdd8
No known key found for this signature in database

View file

@ -9,7 +9,7 @@ namespace SourceGit.Commands
var cmd = new Command();
cmd.WorkingDirectory = repo;
cmd.Context = repo;
cmd.Args = $"tag {name} {basedOn}";
cmd.Args = $"tag --no-sign {name} {basedOn}";
cmd.Log = log;
return cmd.Exec();
}