Skip to content

Commit 2b62cb8

Browse files
author
Jimmy Byrd
committed
Bump version to 0.11.0-beta002
* FEATURE: FAKE 5 (#104) * FEATURE: Add Code Coverage threshold (#103) * MAINTENANCE: Added fsc and netfx props files (#102)
1 parent 9488453 commit 2b62cb8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Content/build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ Target.create "GitRelease" <| fun _ ->
283283

284284
Target.create "GitHubRelease" <| fun _ ->
285285
let token =
286-
match Environment.environVarOrDefault "github_token" "" with
286+
match Environment.environVarOrDefault "GITHUB_TOKEN" "" with
287287
| s when not (String.IsNullOrWhiteSpace s) -> s
288288
| _ -> failwith "please set the github_token environment variable to a github personal access token with repro access."
289289

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 0.11.0-beta001 - 2018-08-30
1+
### 0.11.0-beta002 - 2018-08-30
22
* FEATURE: FAKE 5 (https://github.com/TheAngryByrd/MiniScaffold/pull/104)
33
* FEATURE: Add Code Coverage threshold (https://github.com/TheAngryByrd/MiniScaffold/pull/103)
44
* MAINTENANCE: Added fsc and netfx props files (https://github.com/TheAngryByrd/MiniScaffold/pull/102)

build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Target.create "GitRelease" <| fun _ ->
191191

192192
Target.create "GitHubRelease" <| fun _ ->
193193
let token =
194-
match Environment.environVarOrDefault "github_token" "" with
194+
match Environment.environVarOrDefault "GITHUB_TOKEN" "" with
195195
| s when not (String.IsNullOrWhiteSpace s) -> s
196196
| _ -> failwith "please set the github_token environment variable to a github personal access token with repro access."
197197

0 commit comments

Comments
 (0)