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
As part of the refactoring effort, we broke the criteria used for
deciding if binaries should be signed. As a result, signing of binaries
was being skipped when running on a tagged build.
.WithCriteria(()=>!BuildParameters.IsLocalBuild||BuildParameters.ForceContinuousIntegration,"Skipping because this is a local build, and force isn't being applied")
277
-
.WithCriteria(()=>BuildParameters.IsTagged,"Skipping because current commit is not tagged")
278
-
.WithCriteria(()=>BuildParameters.PreferredBuildAgentOperatingSystem==BuildParameters.BuildAgentOperatingSystem,"Not running on preferred build agent operating system")
279
-
.WithCriteria(()=>BuildParameters.PreferredBuildProviderType==BuildParameters.BuildProvider.Type,"Not running on preferred build provider type")
0 commit comments