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
* develop:
(#167) Update to latest GitReleaseManager
(#174) Don't always push latest tag to docker
(#181) Make ILMerge depend on Build and Test
(#157) Fix PowerShell signing up to date throws exception
(#135) Include support for Publish Release Task
(#132) Fix name of release notes task
(#164) Use version number in URLs
(#136) Allow dry run of task
(maint) Fixed spelling mistake
(#173) Use Product Copyright for packages
(#134) Correct target branch for support branches
(GH-171) Bump DependencyCheck version
(GH-171) Enable Dependency-Check central DB
(#162) Rework prerelease substring
.WithCriteria(()=>BuildParameters.IsTagged&&BuildParameters.Version.MajorMinorPatch==BuildParameters.Version.FullSemVersion,"Skipping because this isn't a tagged full release build.")
69
+
.WithCriteria(()=>BuildParameters.BranchType==BranchType.Master&&BuildParameters.IsTagged&&BuildParameters.Version.MajorMinorPatch==BuildParameters.Version.FullSemVersion,"Skipping because this isn't a tagged full release build.")
70
70
.WithCriteria(()=>BuildParameters.DockerCredentials.HasCredentials,"Skipping because Docker Credentials were not provided.")
71
71
.WithCriteria(()=>BuildParameters.ShouldRunDocker,"Skipping because running Docker tasks is not enabled")
.WithCriteria(()=>BuildParameters.BranchType==BranchType.Master||BuildParameters.BranchType==BranchType.Release||BuildParameters.BranchType==BranchType.HotFix,"Skipping because this is not a releasable branch")
.WithCriteria(()=>BuildParameters.BranchType==BranchType.Master||BuildParameters.BranchType==BranchType.Release||BuildParameters.BranchType==BranchType.HotFix||BuildParameters.BranchType==BranchType.Support,"Skipping because this is not a releasable branch")
88
88
.WithCriteria(()=>BuildParameters.IsTagged,"Skipping because this is not a tagged build")
0 commit comments