generated from MTtankkeo/typescript-rollup
-
Notifications
You must be signed in to change notification settings - Fork 1
Help Note
Dev TtangKong edited this page Nov 3, 2025
·
1 revision
This error happens when your app in the Google Play Store is still in draft mode, which means it is not fully ready to be published.
In your GitHub Actions workflow, add draft: true as an input. And this tells the workflow to upload the new build as a draft release, which is allowed for apps still in draft mode.
Warning
The app won’t go live until you review it in the Play Store and publish it manually.
- name: Deploy Android and iOS
uses: MTtankkeo/flutter-fastlane-action@main
with:
draft: trueGo to the Google Play Console and change your app from draft to a ready state, so that you can use the workflow to upload normal releases with release_status set to completed, allowing the new version to be published and available to users.