@daemux/store-automator 0.10.14 → 0.10.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,14 +5,14 @@
5
5
  },
6
6
  "metadata": {
7
7
  "description": "App Store & Google Play automation for Flutter apps",
8
- "version": "0.10.14"
8
+ "version": "0.10.16"
9
9
  },
10
10
  "plugins": [
11
11
  {
12
12
  "name": "store-automator",
13
13
  "source": "./plugins/store-automator",
14
14
  "description": "3 agents for app store publishing: reviewer, meta-creator, media-designer",
15
- "version": "0.10.14",
15
+ "version": "0.10.16",
16
16
  "keywords": [
17
17
  "flutter",
18
18
  "app-store",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daemux/store-automator",
3
- "version": "0.10.14",
3
+ "version": "0.10.16",
4
4
  "description": "Full App Store & Google Play automation for Flutter apps with Claude Code agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "store-automator",
3
- "version": "0.10.14",
3
+ "version": "0.10.16",
4
4
  "description": "App Store & Google Play automation agents for Flutter app publishing",
5
5
  "author": {
6
6
  "name": "Daemux"
@@ -63,25 +63,49 @@ if [ $FASTLANE_EXIT -ne 0 ]; then
63
63
  echo "::warning title=Google Play Draft App::First manual release required. See job summary for instructions."
64
64
  if [ -n "${GITHUB_STEP_SUMMARY:-}" ]; then
65
65
  cat >> "$GITHUB_STEP_SUMMARY" << 'SUMMARY'
66
- ## :warning: Google Play Draft App - Manual Action Required
67
-
68
- Metadata upload could not be committed because the app is still in **draft state** on Google Play.
69
-
70
- ### How to fix:
71
-
72
- 1. Go to [Google Play Console](https://play.google.com/console)
73
- 2. Select your app
74
- 3. Navigate to **Release > Production** (or **Internal testing**)
75
- 4. Click **Create new release**
76
- 5. The AAB was already uploaded by CI -- select it
77
- 6. Fill in release notes
78
- 7. Complete **Store listing** (description, screenshots -- already uploaded by CI)
79
- 8. Complete **Content rating** questionnaire
80
- 9. Complete **Pricing & distribution** settings
81
- 10. Click **Review release** then **Start rollout**
82
-
83
- > After the first manual release, all subsequent CI metadata uploads will commit successfully without this error.
66
+ ## :warning: Google Play Draft App — First-Time Setup Required
67
+
68
+ Metadata and screenshots were uploaded by CI but **could not be saved** because the app hasn't completed its initial setup on Google Play Console. This is a [Google Play API limitation](https://developers.google.com/android-publisher/edits) — all API edits are rejected until the first manual release.
69
+
70
+ ### One-time setup steps:
71
+
72
+ 1. Go to [Google Play Console](https://play.google.com/console) → Select your app
73
+ 2. **Dashboard** Complete all required setup tasks shown in the checklist
74
+ 3. **Store listing** Create your default store listing (title, description, screenshots)
75
+ - *Note: CI uploaded this data but it was discarded. After completing setup, re-run CI to auto-upload.*
76
+ 4. **Content rating** Complete the content rating questionnaire
77
+ 5. **App pricing** Set pricing and distribution countries
78
+ 6. **Release** Go to **Testing Internal testing** (or **Production**)
79
+ - Click **Create new release**
80
+ - The AAB was already uploaded by CI — select it
81
+ - Add release notes
82
+ - Click **Review release** → **Start rollout**
83
+
84
+ ### After first release:
85
+ All subsequent CI runs will automatically upload metadata, screenshots, and new builds without manual intervention. Re-trigger the CI workflow after completing the steps above.
84
86
  SUMMARY
87
+
88
+ # --- Append app URLs table (read from metadata files) ---
89
+ META_DIR="$PROJECT_ROOT/fastlane/metadata/en-US"
90
+ _privacy_url="" _support_url="" _marketing_url="" _support_email=""
91
+ [ -s "$META_DIR/privacy_url.txt" ] && _privacy_url=$(cat "$META_DIR/privacy_url.txt")
92
+ [ -s "$META_DIR/support_url.txt" ] && _support_url=$(cat "$META_DIR/support_url.txt")
93
+ [ -s "$META_DIR/marketing_url.txt" ] && _marketing_url=$(cat "$META_DIR/marketing_url.txt")
94
+ _support_email=$(yq '.web.support_email // ""' "$PROJECT_ROOT/ci.config.yaml" 2>/dev/null || true)
95
+
96
+ if [ -n "$_privacy_url" ] || [ -n "$_support_url" ] || [ -n "$_marketing_url" ] || [ -n "$_support_email" ]; then
97
+ {
98
+ echo ""
99
+ echo "### App URLs (copy these during setup)"
100
+ echo ""
101
+ echo "| Field | Value |"
102
+ echo "|-------|-------|"
103
+ [ -n "$_privacy_url" ] && echo "| Privacy Policy URL | \`$_privacy_url\` |"
104
+ [ -n "$_support_url" ] && echo "| Support URL | \`$_support_url\` |"
105
+ [ -n "$_marketing_url" ] && echo "| Marketing URL | \`$_marketing_url\` |"
106
+ [ -n "$_support_email" ] && echo "| Support Email | \`$_support_email\` |"
107
+ } >> "$GITHUB_STEP_SUMMARY"
108
+ fi
85
109
  fi
86
110
  ci_skip "App is in draft status — manual first release required on Google Play Console"
87
111
  fi