Bitbucket Pipelines
Set up Bitbucket Pipelines to upload your build artifacts (IPA or APK) directly to TestFairy for distribution.
Setting up
Open your Bitbucket repository, and select Settings -> Pipelines -> Environment Variables
Fill in variable, value fields:
- Variable: TESTFAIRY_API_KEY
- Value: Your API application key. See https://app.testfairy.com/settings for details.
Secured: Y
When done, click the Add button.
Edit your
bitbucket-pipelines.yml
and add this command to yourscript
section:curl https://app.testfairy.com/api/upload -F api_key=${TESTFAIRY_API_KEY} -F file=@MyApplicationFile.apk -F format=readable
NOTE: Do not forget to replace
MyApplicationFile.apk
with path to your APK or IPA files.Additional optional parameters such as
testers-groups
,notify
andcomment
can be added to this line. Please refer to the TestFairy Upload API reference guide for more information and examples.Here, for example, is a screenshot of a sample
bitbucket-pipelines.yml
file:
Last updated on 2023-06-06