Steps Xcode Archive Versions Save

Xcode Archive for iOS step

4.8.0

11 months ago

What's Changed

Full Changelog: https://github.com/bitrise-steplib/steps-xcode-archive/compare/4.7.2...4.8.0

4.7.2

1 year ago

This version has an important fix for the Apple ID based automatic code signing.

What's Changed

Full Changelog: https://github.com/bitrise-steplib/steps-xcode-archive/compare/4.7.1...4.7.2

4.7.1

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/bitrise-steplib/steps-xcode-archive/compare/4.7.0...4.7.1

4.6.0

1 year ago

Notable changes

Authentication parameters used for code signing setup can be overridden using new step inputs (instead of using the globally configured connection for the whole app). Check out the description of the new inputs (api_key_path, api_key_id, api_key_issuer_id) for more details.

What's Changed

Full Changelog: https://github.com/bitrise-steplib/steps-xcode-archive/compare/4.5.2...4.6.0

4.5.2

2 years ago

What's Changed

  • Update step.yml
  • Update go-xcode dependency to pull proper xcconfig file path handling

Full Changelog: https://github.com/bitrise-steplib/steps-xcode-archive/compare/4.5.1...4.5.2

4.5.1

2 years ago

4.5.0

2 years ago

The "Build settings (xcconfig)" (xcconfig_content) input can now be a path to a existing .xcconfig file. Previously it could have been only the contents.

If is empty, no setting is changed. This is required when the -xcconfig additional option is used.

When xcconfig_content is set it can be either:

  1. Existing .xcconfig file path. Example:

    ./ios-sample/ios-sample/Configurations/Dev.xcconfig

  2. The contents of a newly created temporary .xcconfig file. (This is the default.) Build settings must be separated by newline character (\n). Example:

       COMPILER_INDEX_STORE_ENABLE = NO
       ONLY_ACTIVE_ARCH[config=Debug][sdk=*][arch=*] = YES
    

4.4.0

2 years ago

Added Step input fallback_provisioning_profile_url_list. If set the listed profiles will be installed when Automatic code signing fails (for example due to an API or authentication failure). To use the profiles uploaded to the Code Signing tab, set it to $BITRISE_PROVISION_URL.

(https://github.com/bitrise-steplib/steps-xcode-archive/pull/294)