@@ -44,11 +44,11 @@ let projectDescription = "FAKE - F# Make - is a build automation tool for .NET.
44
44
let authors = [ " Steffen Forkmann" ; " Mauricio Scheffer" ; " Colin Bull" ; " Matthias Dittrich" ]
45
45
let gitRaw = Environment.environVarOrDefault " gitRaw" " https://raw.github.com/fsharp"
46
46
47
- let gitOwner = " fsprojects "
47
+ let gitOwner = " fsharp "
48
48
let gitHome = " https://github.com/" + gitOwner
49
49
50
50
// The name of the project on GitHub
51
- let gitName = " Paket "
51
+ let gitName = " FAKE "
52
52
53
53
let release = ReleaseNotes.LoadReleaseNotes " RELEASE_NOTES.md"
54
54
@@ -883,14 +883,6 @@ Target.Create "ReleaseDocs" (fun _ ->
883
883
open Fake.Api
884
884
885
885
Target.Create " FastRelease" ( fun _ ->
886
- Git.Staging.StageAll " "
887
- Git.Commit.Commit " " ( sprintf " Bump version to %s " release.NugetVersion)
888
- let branch = Git.Information.getBranchName " "
889
- Git.Branches.pushBranch " " " origin" branch
890
-
891
- Git.Branches.tag " " release.NugetVersion
892
- Git.Branches.pushTag " " " origin" release.NugetVersion
893
-
894
886
let token =
895
887
match Environment.environVarOrDefault " github_token" " " with
896
888
| s when not ( System.String.IsNullOrWhiteSpace s) -> s
@@ -908,6 +900,14 @@ Target.Create "FastRelease" (fun _ ->
908
900
draftWithFiles
909
901
|> GitHub.releaseDraft
910
902
|> Async.RunSynchronously
903
+
904
+ Git.Staging.StageAll " "
905
+ Git.Commit.Commit " " ( sprintf " Bump version to %s " release.NugetVersion)
906
+ let branch = Git.Information.getBranchName " "
907
+ Git.Branches.pushBranch " " " origin" branch
908
+
909
+ Git.Branches.tag " " release.NugetVersion
910
+ Git.Branches.pushTag " " " origin" release.NugetVersion
911
911
)
912
912
913
913
open System
0 commit comments