Skip to content

Commit

Permalink
Upgrade Cake to 0.37.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RehanSaeed committed Feb 3, 2020
1 parent fd0d3c8 commit 47ddca4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -350,3 +350,5 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/

Artefacts/
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var configuration =
var preReleaseSuffix =
HasArgument("PreReleaseSuffix") ? Argument<string>("PreReleaseSuffix") :
(BuildSystem.IsRunningOnAzurePipelinesHosted && TFBuild.Environment.Repository.SourceBranch.StartsWith("refs/tags/")) ? null :
(BuildSystem.IsRunningOnGitHubActions && BuildSystem.GitHubActions.Environment.Workflow.Ref.StartsWith("refs/tags/")) ? null :
(BuildSystem.IsRunningOnGitHubActions && GitHubActions.Environment.Workflow.Ref.StartsWith("refs/tags/")) ? null :
(BuildSystem.IsRunningOnAppVeyor && AppVeyor.Environment.Repository.Tag.IsTag) ? null :
EnvironmentVariable("PreReleaseSuffix") != null ? EnvironmentVariable("PreReleaseSuffix") :
"beta";
Expand Down
2 changes: 1 addition & 1 deletion dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"cake.tool": {
"version": "0.36.0",
"version": "0.37.0",
"commands": [
"dotnet-cake"
]
Expand Down

0 comments on commit 47ddca4

Please sign in to comment.