FastlaneProvider.

Deliver(Action<FastlaneDeliverConfiguration>) Method

Summary

Executes fastlane deliver with the specified configuration action.
Assembly
Cake.Fastlane.dll
Namespace
Cake.Fastlane
Containing Type
FastlaneProvider

Syntax

public void Deliver(Action<FastlaneDeliverConfiguration> action)

Examples

Fastlane.Deliver(config =>
{
    config.CertificateType = CertificateType.Development;
    config.AppIdentifier = "com.fastlane.cake";
    config.ForceForNewDevices = true;
});

Attributes

Type Description
CakeAliasCategoryAttribute

Parameters

Name Type Description
action Action<FastlaneDeliverConfiguration> The action to build fastlane deliver configuration.

Return Value

Type Description
void