diff --git a/Content/build.fsx b/Content/build.fsx index 945fd652..7281eab7 100644 --- a/Content/build.fsx +++ b/Content/build.fsx @@ -283,7 +283,7 @@ Target.create "GitRelease" <| fun _ -> Target.create "GitHubRelease" <| fun _ -> let token = - match Environment.environVarOrDefault "github_token" "" with + match Environment.environVarOrDefault "GITHUB_TOKEN" "" with | s when not (String.IsNullOrWhiteSpace s) -> s | _ -> failwith "please set the github_token environment variable to a github personal access token with repro access." diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 9baef36f..15137633 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,4 @@ -### 0.11.0-beta001 - 2018-08-30 +### 0.11.0-beta002 - 2018-08-30 * FEATURE: FAKE 5 (https://github.com/TheAngryByrd/MiniScaffold/pull/104) * FEATURE: Add Code Coverage threshold (https://github.com/TheAngryByrd/MiniScaffold/pull/103) * MAINTENANCE: Added fsc and netfx props files (https://github.com/TheAngryByrd/MiniScaffold/pull/102) diff --git a/build.fsx b/build.fsx index 46d56735..58aaef7a 100644 --- a/build.fsx +++ b/build.fsx @@ -191,7 +191,7 @@ Target.create "GitRelease" <| fun _ -> Target.create "GitHubRelease" <| fun _ -> let token = - match Environment.environVarOrDefault "github_token" "" with + match Environment.environVarOrDefault "GITHUB_TOKEN" "" with | s when not (String.IsNullOrWhiteSpace s) -> s | _ -> failwith "please set the github_token environment variable to a github personal access token with repro access."