xcode_archive - netguru/highway GitHub Wiki
Description
Used to archive your project.
Parameters:
| Name | Description | Required | Type | Default |
|---|---|---|---|---|
| clean | Indicates whether build folder should be cleaned. | False | Bool | True |
| configuration | Build configuration. | False | String | - |
| flags | Build flags. | False | [String] | [] |
| method | Export method. | True | Enum("ad-hoc", "app-store", "development", "developer-id", "enterprise", "package") | - |
| project | Your project or workspace name. | True | String | - |
| scheme | Scheme that should be used. | True | String | - |
| settings | Custom settings that will be used. | False | Hash(String) | {} |
Example
deploy:
staging:
- xcode_archive:
project: $(XCODEBUILD_PROJECT)
scheme: $(XCODEBUILD_SCHEME)
method: "enterprise"
settings:
_BUILD_NUMBER: $(ENV:BITRISE_BUILD_NUMBER)