You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* release/0.13.0:
(#61) Add override for OpenCover
(#62) ToLower() to argument
(maint) Formatting
(#62) Don't run any unit tests when argument set
(maint) Correct spelling of NuGet
(maint) Renamed CanUseGitReleaseManager property
(#61) Renamed ShouldPublishGitHub
(#61) Add new criteria to tasks
(#61) Alphabetical all the things!
(maint) Renamed all DotNetCore tasks
(maint) Remove Upload-Artifacts-Task
.WithCriteria(()=>!BuildParameters.IsLocalBuild||BuildParameters.ForceContinuousIntegration,"Skipping because this is a local build, and force isn't being applied")
427
-
.WithCriteria(()=>DirectoryExists(BuildParameters.Paths.Directories.NuGetPackages)||DirectoryExists(BuildParameters.Paths.Directories.ChocolateyPackages),"Skipping because no packages to upload")
428
-
.Does(()=>
429
-
{
430
-
// Concatenating FilePathCollections should make sure we get unique FilePaths
.WithCriteria(()=>!BuildParameters.IsPullRequest||BuildParameters.PrepareLocalRelease,"Skipping because this is pull request, and is not preparing local release")
34
34
.WithCriteria(()=>BuildParameters.BranchType==BranchType.Master||BuildParameters.BranchType==BranchType.Release||BuildParameters.BranchType==BranchType.HotFix||BuildParameters.PrepareLocalRelease,"Skipping because this is not a releasable branch, and is not preparing local release")
35
35
.WithCriteria(()=>BuildParameters.IsTagged||BuildParameters.PrepareLocalRelease,"Skipping because this is not a tagged build, and is not preparing local release")
.WithCriteria(()=>!BuildParameters.IsPullRequest,"Skipping because this is pull request")
65
65
.WithCriteria(()=>BuildParameters.BranchType==BranchType.Master||BuildParameters.BranchType==BranchType.Release||BuildParameters.BranchType==BranchType.HotFix,"Skipping because this is not a releasable branch")
66
66
.WithCriteria(()=>BuildParameters.IsTagged,"Skipping because this is not a tagged build")
67
-
.WithCriteria(()=>BuildParameters.ShouldPublishGitHub,"Skipping because this publishing GitHub Release is disabled via parameters (perhaps the default value?")
.WithCriteria(()=>BuildParameters.ShouldRunGitReleaseManager,"Skipping because this publishing running GitReleaseManager is disabled via parameters (perhaps the default value?")
.WithCriteria(()=>BuildParameters.ShouldPublishPreReleasePackages,"Skipping because publishing of pre-release packages is not enabled")
144
145
.WithCriteria(()=>!BuildParameters.IsLocalBuild||BuildParameters.ForceContinuousIntegration,"Skipping because this is a local build, and force isn't being applied")
145
146
.WithCriteria(()=>!BuildParameters.IsPullRequest,"Skipping because current build is from a Pull Request")
146
147
.WithCriteria(()=>!BuildParameters.IsTagged,"Skipping because current commit is tagged")
.WithCriteria(()=>BuildParameters.ShouldPublishReleasePackages,"Skipping because publishing of release packages is not enabled")
165
167
.WithCriteria(()=>!BuildParameters.IsLocalBuild||BuildParameters.ForceContinuousIntegration,"Skipping because this is a local build, and force isn't being applied")
166
168
.WithCriteria(()=>!BuildParameters.IsPullRequest,"Skipping because current build is from a Pull Request")
167
169
.WithCriteria(()=>BuildParameters.IsTagged,"Skipping because current commit is not tagged")
0 commit comments