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.Fastlane.
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 |
The fastlane supply configuration action. |
Return Value
Type | Description |
---|---|
void |