apkup icon indicating copy to clipboard operation
apkup copied to clipboard

Perform stage rollout for production track

Open ericliboon opened this issue 4 years ago • 3 comments

Good day!

Would like to know if stage rollout can be supported using this? https://developers.google.com/android-publisher/tracks#staged_rollouts

ericliboon avatar Mar 03 '20 21:03 ericliboon

Yep, this is possible with apkup! You can use the track option to specify which track the APK should be uploaded to.

npx apkup --apk ./app.apk --track alpha

Or you can promote existing APKs with the promote command.

npx apkup promote --apk ./app.apk --track beta

nprail avatar Mar 05 '20 22:03 nprail

Hi @nprail Thanks by the way for this awesome project! Sorry I haven’t clearly described from above the stage rollout i meant was for having the parameter to set a specific percentile for rollout in production track. For my use case, specially if there’s a major change developer applied on the version we had rolled out in alpha track, we perform production rollout to certain percentage only e.g. 20% then we gradually increase it till it reached full rollout if no issue was encountered.

ericliboon avatar Mar 06 '20 07:03 ericliboon

Oh, I see! apkup does not currently support that. I'm going to guess adding it would be relatively straightforward, though!

nprail avatar Mar 06 '20 11:03 nprail