CodeMagic
Add the following Post-Publish action to your workflow:
#!/bin/sh
echo $(curl -i -X POST \
-H "Content-Type: multipart/form-data" \
-F "build=@build/app/outputs/mobile-apk/app-debug.apk" \
-F "organisation_key=<ORG_KEY>" \
-F "platform=<platform>" \
-F "metadata={}" \
https://api.mobileboost.io/uploadBuild/)
In the above script replace
the
<ORG_KEY>
with your OrgID which can be found in the account settings.the
<platform>
with ”ios” or “android” depending on the build
Last updated