diff --git a/src/Vcs/Git/GitVcs.cs b/src/Vcs/Git/GitVcs.cs index 3a3133d..26318cb 100644 --- a/src/Vcs/Git/GitVcs.cs +++ b/src/Vcs/Git/GitVcs.cs @@ -48,7 +48,7 @@ public bool IsVcsToolPresent() /// Name of the tag public void Tag(string tagName) { - if(!LaunchGitWithArgs($"tag {tagName}")) + if(!LaunchGitWithArgs($"tag -a {tagName} -m {tagName}")) { throw new OperationCanceledException("Unable to create tag"); }