FastlaneMatchProvider.

Match(Action<FastlaneMatchConfiguration>) Method

Summary

Executes fastlane match with the specified configuration action.
Assembly
Cake.Fastlane.dll
Namespace
Cake.Fastlane
Containing Type
FastlaneMatchProvider

Syntax

public void Match(Action<FastlaneMatchConfiguration> action)

Examples

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

Parameters

Name Type Description
action Action<FastlaneMatchConfiguration> The action.

Return Value

Type Description
void