@lamantin/fastpush
Version:
Typed fastlane frontend for pushing builds to store
48 lines (39 loc) • 1.14 kB
text/typescript
import { mapObjectToArgs } from "../mappers";
import { IOSLane } from ".";
export type MatchType = "appstore" | "development" | "adhoc" | "enterprise" | "developer_id"
export type MatchArgs = {
/**
* Match can generate profiles that contain custom entitlements by passing in the entitlement's name with the template_name parameter.
*/
template_name?: string
/**
* Only fetch existing certificates and profiles, don't generate new ones
*/
readonly?: boolean
/**
* Skip syncing provisioning profiles
*/
skip_provisioning_profiles?: boolean
/**
* Set the provisioning profile's platform to work with (i.e. ios, tvos, macos)
*/
platform?: "ios" | "macos" | "tvos"
/**
* The bundle identifier(s) of your app (comma-separated string or array of strings)
*/
app_identifier?: string
};
/**
* https://docs.fastlane.tools/actions/match/
* fastlane run match - show documentation
*/
export function match(type: MatchType, args?: MatchArgs): IOSLane {
return {
type: 'ios',
name: 'match',
args: [
{ name: 'type', value: type },
...mapObjectToArgs(args)
],
};
}