appcenter - netguru/highway GitHub Wiki

Description

Used to upload IPA to App Center. Additional plugin is required to run this step.

Please add to your Gemfile:

gem 'fastlane-plugin-appcenter'

Parameters:

api_token

Your App Center API token. See how to generate token.

  • Required: True
  • Type: String

app_name

Your application name.

  • Required: True
  • Type: String

distribution_group

Groups for which application will be distributed.

  • Required: False
  • Type: String
  • Default: " * "

dsym

Path to your symbols file. Step will use dsym from ipa directory by default.

  • Required: False
  • Type: String

notify

Indicates whether distribution groups should be notified.

  • Required: False
  • Type: Bool
  • Default: False

owner_name

App Center account name of the owner of the app.

  • Required: True
  • Type: String

upload_dsym_only

Indicates whether only dsym should be uploaded.

  • Required: False
  • Type: Bool
  • Default: False

release_notes

Release notes given as a string that will be added to the App Center release.

  • Required: False
  • Type: String
  • Default: ""

Example

deploy:
    staging:
        - appcenter:
            api_token: "1234abcde"
            owner_name: "owner"
            app_name: "MyApp"
            distribution_group: "Testers"
            notify: true