FastlaneProvider.

Supply(Action<FastlaneSupplyConfiguration>) Method

Summary

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

Syntax

public void Supply(Action<FastlaneSupplyConfiguration> configurator)

Examples

Fastlane.Supply(config =>
   {
       config.ApkFilePath = "./artifacts/android/cake.fastlane.apk";
       config.SkipUploadMetadata = true;
       config.SkipUploadImages = true;
       config.SkipUploadScreenShots = true;
   });

Parameters

Name Type Description
configurator Action<FastlaneSupplyConfiguration> The fastlane supply configuration action.

Return Value

Type Description
void