Skip to content

Commit

Permalink
Bump version to 5.0.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
haf committed Feb 6, 2018
1 parent e132667 commit d426484
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ Target "Release" (fun _ ->
let remote =
Git.CommandHelper.getGitResult "" "remote -v"
|> Seq.tryFind (fun s -> s.EndsWith "(push)" && s.Contains gitOwnerName)
|> function None -> ("ssh://github.com/"+gitOwnerName) | Some s -> s.Split().[0]
|> function None -> "[email protected]:logary/logary.git"
| Some s -> s.Split().[0]

Git.Staging.StageAll ""
Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion)
Expand Down

0 comments on commit d426484

Please sign in to comment.