Loading...
Loading...
End-to-end release workflows for Google Play using gpd publish commands, tracks, rollouts, and edit lifecycle. Use when uploading builds or managing releases.
npx skill4agent add rudrankriyam/asc-skills gpd-release-flowGPD_SERVICE_ACCOUNT_KEY--packagegpd publish upload app.aab --package com.example.app
gpd publish release --package com.example.app --track internal --status completedgpd publish promote --package com.example.app --from-track beta --to-track production# 1. Create edit
EDIT_ID=$(gpd publish edit create --package com.example.app | jq -r '.data.editId')
# 2. Upload build without auto-commit
gpd publish upload app.aab --package com.example.app --edit-id $EDIT_ID --no-auto-commit
# 3. Configure release
gpd publish release --package com.example.app --track internal --status draft --edit-id $EDIT_ID
# 4. Validate and commit
gpd publish edit validate $EDIT_ID --package com.example.app
gpd publish edit commit $EDIT_ID --package com.example.appgpd publish release --package com.example.app --track production --status inProgress --version-code 123
gpd publish rollout --package com.example.app --track production --percentage 5
gpd publish rollout --package com.example.app --track production --percentage 50
gpd publish rollout --package com.example.app --track production --percentage 100gpd publish halt --package com.example.app --track production --confirm
gpd publish rollback --package com.example.app --track production --confirmgpd publish status --package com.example.app --track production
gpd publish tracks --package com.example.app--status draft--confirmgpd publish status