Publish Android Application
- POST
- /workspaces
- /:workspace
- /projects
- /:project_name
- /pipelines
- /:pipeline_id
- /actions
Creates a new Publish Android Application action in the pipeline
Request example
curl -X POST "https://api.buddy.works/workspaces/:workspace/projects/:project_name/pipelines/:pipeline_id/actions" \
-H "Authorization: Bearer <YOUR-TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"name": "Publish Android App",
"type": "ANDROID_PUBLISH_APK",
"trigger_time": "ON_EVERY_EXECUTION",
"application_id": "com.mycompany.mylovelyapp",
"track": "alpha",
"user_fraction": 0.05,
"mapping_path": "",
"changes_path": "changes.xml",
"supersede_versions": true,
"draft": true,
"variables": [
{
"key": "apkPath",
"value": "my-app-release9.apk"
}
],
"apk_files": [
{
"apk_path": "$apkPath",
"main_expansion_path": "ss",
"patch_expansion_path": ""
}
],
"integration": {
"identifier": "google-play"
}
}'STATUS200 OK