Castellano (Spanish)
Appearance
Castellano (Spanish)
Appearance
STRUCT
ArchiveAction
Contents
configuration
revealArchiveInOrganizer
customArchiveName
preActions
postActions
archiveAction(configuration:revealArchiveInOrganizer:customArchiveName:preActions:postActions:)
public struct ArchiveAction: Equatable, Codable, Sendable
An action that archives the built products.
It's initialized with the .archiveAction
static method.
configuration
public var configuration: ConfigurationName
Indicates the build configuration to run the archive with.
revealArchiveInOrganizer
public var revealArchiveInOrganizer: Bool
If set to true, Xcode will reveal the Organizer on completion.
customArchiveName
public var customArchiveName: String?
Set if you want to override Xcode's default archive name.
preActions
public var preActions: [ExecutionAction]
A list of actions that are executed before starting the archive process.
postActions
public var postActions: [ExecutionAction]
A list of actions that are executed after the archive process.
archiveAction(configuration:revealArchiveInOrganizer:customArchiveName:preActions:postActions:)
public static func archiveAction(
configuration: ConfigurationName,
revealArchiveInOrganizer: Bool = true,
customArchiveName: String? = nil,
preActions: [ExecutionAction] = [],
postActions: [ExecutionAction] = []
) -> ArchiveAction
Initialize a ArchiveAction
Name | Description |
---|---|
configuration | Indicates the build configuration to run the archive with. |
revealArchiveInOrganizer | If set to true, Xcode will reveal the Organizer on completion. |
customArchiveName | Set if you want to override Xcode’s default archive name. |
preActions | A list of actions that are executed before starting the archive process. |
postActions | A list of actions that are executed after the archive process. |