Bitrise
Waldo integration with Bitrise requires you only to add the step to your workflow. First, build a new APK for your app. When you use the step to build your APK, output variables are generated that you can then use as input to the step to find and upload the generated APK.
workflows:
primary:
steps:
#...
- android-build: {}
- waldo-upload:
inputs:
- build_path: $BITRISE_APK_PATH
- upload_token: $WALDO_UPLOAD_TOKEN # from your secrets
#...
The value you supply to the upload_token input should be specified as a “secret” environment variable by going to the Secrets tab in the Bitrise Workflow Editor and assigning your upload token to WALDO_UPLOAD_TOKEN. (Your app’s upload token is {user.waldoUploadToken}.)
Make sure you use your "CI Token" (you can find it in: Sidebar > Configuration > General. We make sure tokens used in CI are only scoped to a specific app, as a result CI uploads won't work with your User token (that you can find in user menu > Account settings > Profile).