Skip to main content

TeamCity

To automatically deply your Android or iOS Apps to Sauce Mobile App Distribution by using TeamCity, follow the steps below:

  1. On the Sauce Mobile App Distribution dashboard, navigate to the Preferences.

    open preferences
  2. On the Preferences, go to the API Key section and copy the API key.

    upload the key
  3. In TeamCity, add an environment variable as a New Parameter into the Build Configuration.

    build configuration
  4. Name the parameter env.TESTFAIRY_API_KEY and give it the value you copied from the Sauce Mobile App Distribution preferences page, and Save.

     add environment variable
  5. Add a Build Step to the Build Configuration you wish to deploy from.

    add build step
  6. Make sure to select a Command Line build step.

    command line build step

    Copy the following command into the Custom script text field:

    curl https://app.testfairy.com/api/upload -F api_key=${env.TESTFAIRY_API_KEY} -F comment="TeamCity build" -F file=@android.apk
    note

    Replace the -F file=@android.apk argument with a path to your own APK or IPA.

For a complete list of available options, visit the Sauce Mobile App Distribution Upload API documentation.