|
|
@ -858,7 +858,7 @@ let publishReleaseTag title prefix version notes = |
|
|
// inspired by Deedle/tpetricek |
|
|
// inspired by Deedle/tpetricek |
|
|
let tagName = prefix + "v" + version |
|
|
let tagName = prefix + "v" + version |
|
|
let tagMessage = String.concat Environment.NewLine [title + " v" + version; ""; notes ] |
|
|
let tagMessage = String.concat Environment.NewLine [title + " v" + version; ""; notes ] |
|
|
let cmd = sprintf """tag -a %s -s -m "%s" """ tagName tagMessage |
|
|
let cmd = sprintf """tag -a %s -m "%s" """ tagName tagMessage |
|
|
Git.CommandHelper.runSimpleGitCommand "." cmd |> printfn "%s" |
|
|
Git.CommandHelper.runSimpleGitCommand "." cmd |> printfn "%s" |
|
|
let _, remotes, _ = Git.CommandHelper.runGitCommand "." "remote -v" |
|
|
let _, remotes, _ = Git.CommandHelper.runGitCommand "." "remote -v" |
|
|
let main = remotes |> Seq.find (fun s -> s.Contains("(push)") && s.Contains("mathnet/mathnet-numerics")) |
|
|
let main = remotes |> Seq.find (fun s -> s.Contains("(push)") && s.Contains("mathnet/mathnet-numerics")) |
|
|
|