Português (Portuguese)
Appearance
Português (Portuguese)
Appearance
STRUCT
ArchiveAction Contents
configurationrevealArchiveInOrganizercustomArchiveNamepreActionspostActionsarchiveAction(configuration:revealArchiveInOrganizer:customArchiveName:preActions:postActions:)public struct ArchiveAction: Equatable, Codable, SendableAn action that archives the built products.
It's initialized with the .archiveAction static method.
configuration public var configuration: ConfigurationNameIndicates the build configuration to run the archive with.
revealArchiveInOrganizer public var revealArchiveInOrganizer: BoolIf 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] = []
) -> ArchiveActionInitialize 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. |