Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.25 KB

ios-deploy-to-bitrise.md

File metadata and controls

30 lines (22 loc) · 1.25 KB

(iOS) Deploy to bitrise.io

Description

Build and distribute your app to testers via Bitrise.io Ship.

Prerequisites

  1. If you want to deploy a release build, don't forget to set up code signing on Bitrise to build and sign the APK with your release key.
  2. You have code signing set up. See iOS Code Signing for more details.

Instructions

  1. Add the Xcode Archive & Export for iOS step. Set the input variables:
    • Project path: by default, $BITRISE_PROJECT_PATH.
    • Scheme: by default, $BITRISE_SCHEME.
    • Distribution method: development, ad-hoc or enterprise.
  2. Add the Deploy to Bitrise.io - Apps, Logs, Artifacts Step.

bitrise.yml

   - xcode-archive@4:
        inputs:
        - project_path: "$BITRISE_PROJECT_PATH"
        - scheme: "$BITRISE_SCHEME"
        - automatic_code_signing: apple-id
        - distribution_method: development
   - deploy-to-bitrise-io@2: {}