Skip to content

Commit

Permalink
Bump version to 0.11.0-beta002
Browse files Browse the repository at this point in the history
* FEATURE: FAKE 5 (#104)
* FEATURE: Add Code Coverage threshold (#103)
* MAINTENANCE: Added fsc and netfx props files (#102)
  • Loading branch information
Jimmy Byrd committed Aug 30, 2018
1 parent 9488453 commit 2b62cb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Content/build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -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."

Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -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."

Expand Down

0 comments on commit 2b62cb8

Please sign in to comment.