Skip to content

Commit

Permalink
release notes && add git_repository_name for staging
Browse files Browse the repository at this point in the history
  • Loading branch information
matthid committed Oct 4, 2019
1 parent 2b6ef63 commit 4da532f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

## 5.16.2-alpha - tbd

* DOCS: Remove Issue Stats - https://github.com/fsharp/FAKE/pull/2393
* DOCS: Remove Issue Stats, thanks @vbfox - https://github.com/fsharp/FAKE/pull/2393
* ENHANCEMENT: Support VSTest parallel test execution setting, thanks @dungpa - https://github.com/fsharp/FAKE/pull/2385
* ENHANCEMENT: Update dotnet new template, thanks @Krzysztof-Cieslak - https://github.com/fsharp/FAKE/pull/2391

* tbd.

Expand Down
6 changes: 3 additions & 3 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ let projectSummary = "FAKE - F# Make - Get rid of the noise in your build script
let projectDescription = "FAKE - F# Make - is a build automation tool for .NET. Tasks and dependencies are specified in a DSL which is integrated in F#."
let authors = ["Steffen Forkmann"; "Mauricio Scheffer"; "Colin Bull"; "Matthias Dittrich"]

// The name of the project on GitHub
let gitName = "FAKE"

let release = ReleaseNotes.load "RELEASE_NOTES.md"

let buildDir = "./build"
Expand Down Expand Up @@ -101,6 +98,9 @@ let getVarOrDefault name def = ``Legacy-build``.getVarOrDefault name def
let releaseSecret replacement name = ``Legacy-build``.releaseSecret replacement name

let github_release_user = getVarOrDefault "github_release_user" "fsharp"

// The name of the project on GitHub
let gitName = getVarOrDefault "github_repository_name" "FAKE"
let nugetsource = getVarOrDefault "nugetsource" "https://www.nuget.org/api/v2/package"
let chocosource = getVarOrDefault "chocosource" "https://push.chocolatey.org/"
let artifactsDir = getVarOrDefault "artifactsdirectory" ""
Expand Down

0 comments on commit 4da532f

Please sign in to comment.