Skip to content

Commit 684d958

Browse files
committed
fix: Automatically use completed state on internal publish stage
1 parent 0486dd9 commit 684d958

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/flutter_release/lib/platform/android.dart

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,10 @@ package_name("$packageName")
217217
track,
218218
'--release_status',
219219
switch (flutterPublish.stage) {
220-
PublishStage.production => 'completed',
221-
PublishStage.beta => 'completed',
222-
PublishStage.alpha => 'completed',
220+
PublishStage.production => 'draft',
221+
PublishStage.beta => 'draft',
222+
PublishStage.alpha => 'draft',
223+
PublishStage.internal => 'completed',
223224
_ => 'draft',
224225
},
225226
],

0 commit comments

Comments
 (0)