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
.WithCriteria<BuildParameters>((context,parameters)=>parameters.EnabledPublishChocolatey,"Publish-Chocolatey was disabled.")
129
132
.WithCriteria<BuildParameters>((context,parameters)=>parameters.IsRunningOnWindows,"Publish-Chocolatey works only on Windows agents.")
130
133
.WithCriteria<BuildParameters>((context,parameters)=>parameters.IsReleasingCI,"Publish-Chocolatey works only on Releasing CI.")
131
-
.WithCriteria<BuildParameters>((context,parameters)=>parameters.IsStableRelease()||parameters.IsPreRelease(),"Publish-Chocolatey works only for releases.")
134
+
.WithCriteria<BuildParameters>((context,parameters)=>parameters.IsStableRelease(),"Publish-Chocolatey works only for releases.")
0 commit comments