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
Copy file name to clipboardExpand all lines: build/docker.cake
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -36,11 +36,11 @@ Task("Docker-Test")
36
36
}
37
37
});
38
38
39
-
Task("Publish-DockerHub")
40
-
.WithCriteria<BuildParameters>((context,parameters)=>parameters.EnabledPublishDocker,"Publish-DockerHub was disabled.")
41
-
.WithCriteria<BuildParameters>((context,parameters)=>!parameters.IsRunningOnMacOS,"Publish-DockerHub works only on Windows and Linux agents.")
42
-
.WithCriteria<BuildParameters>((context,parameters)=>parameters.IsRunningOnAzurePipeline,"Publish-DockerHub works only on AzurePipeline.")
43
-
.WithCriteria<BuildParameters>((context,parameters)=>parameters.IsStableRelease()||parameters.IsPreRelease(),"Publish-DockerHub works only for releases.")
39
+
Task("Docker-Publish")
40
+
.WithCriteria<BuildParameters>((context,parameters)=>parameters.EnabledPublishDocker,"Docker-Publish was disabled.")
41
+
.WithCriteria<BuildParameters>((context,parameters)=>!parameters.IsRunningOnMacOS,"Docker-Publish works only on Windows and Linux agents.")
42
+
.WithCriteria<BuildParameters>((context,parameters)=>parameters.IsRunningOnAzurePipeline,"Docker-Publish works only on AzurePipeline.")
43
+
.WithCriteria<BuildParameters>((context,parameters)=>parameters.IsStableRelease()||parameters.IsPreRelease(),"Docker-Publish works only for releases.")
0 commit comments