diff --git a/.gitignore b/.gitignore index 62e4e8f2..45fb4ea3 100644 --- a/.gitignore +++ b/.gitignore @@ -350,3 +350,5 @@ MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ + +Artefacts/ diff --git a/build.cake b/build.cake index 215788a3..70826c1e 100644 --- a/build.cake +++ b/build.cake @@ -6,7 +6,7 @@ var configuration = var preReleaseSuffix = HasArgument("PreReleaseSuffix") ? Argument("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"; diff --git a/dotnet-tools.json b/dotnet-tools.json index 6b6101d0..b1fbe6d2 100644 --- a/dotnet-tools.json +++ b/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "cake.tool": { - "version": "0.36.0", + "version": "0.37.0", "commands": [ "dotnet-cake" ]