This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.Openshift.
Summary
Starts a new openshift build for the provided build config.
Syntax
public static void OpenshiftStartBuild(this ICakeContext context, string buildConfig)
Examples
Cake task:
Task("Openshift-StartBuild")
.Does(() =>
{
var buildConfig = "hello-world";
OpenshiftStartBuild(buildConfig);
});
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
CakeNamespaceImportAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
buildConfig |
string |
The build config. |
Return Value