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.
- Assembly
- Cake
.Fastlane .dll - Namespace
- Cake
.Fastlane - Containing Type
- FastlaneProvider
Syntax
public void Supply(FastlaneSupplyConfiguration supplyConfiguration = null)
Examples
var configuration = new FastlaneSupplyConfiguration
{
ApkFilePath = "./artifacts/android/cake.fastlane.apk",
SkipUploadMetadata = true,
SkipUploadImages = true,
SkipUploadScreenShots = true
};
Fastlane.Supply(configuration);
Parameters
Name | Type | Description |
---|---|---|
supplyConfiguration | Fastlane |
The fastlane supply configuration. |
Return Value
Type | Description |
---|---|
void |