GPP is Android's unofficial release automation Gradle Plugin. It can do anything from building, uploading, and then promoting your App Bundle or APK to publishing app listings and other metadata.
MIT License
4.13k
stars
341
forks
source link
publishBundle task with --artifact-dir in CLI starts build instead of publishing existing artifact #1017
Describe the bug
publishBundle with --artifact-dir starts build instead of publishing existing bundle, unless artifact-dir is specified in
build.gradle
How To Reproduce
See 'Tasks executed'
Versions
Tasks executed
Does not work:
Does work:
with in
build.gradle
:Expected behavior
For the plugin to publish the existing .aab to Google play, regardless of setting the --artifact-dir through CLI or in
build.gradle
.Additional context (if a crash, provide stack trace)
Since the task is ran from a pipeline, setting the artifiact directory through the CLI is strongly preferable over setting it in the
build.gradle
.Following issue #649 I checked my project for
dependsOn
andtasks.all
ortasks.onEach
, none of which are present in this project.