@daemux/store-automator 0.10.19 → 0.10.20
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.
|
|
8
|
+
"version": "0.10.20"
|
|
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.
|
|
15
|
+
"version": "0.10.20",
|
|
16
16
|
"keywords": [
|
|
17
17
|
"flutter",
|
|
18
18
|
"app-store",
|
package/package.json
CHANGED
|
@@ -72,7 +72,7 @@ Metadata and screenshots were uploaded by CI but **could not be saved** because
|
|
|
72
72
|
1. Go to [Google Play Console](https://play.google.com/console) → Select your app
|
|
73
73
|
2. **Dashboard** → Complete all required setup tasks shown in the checklist
|
|
74
74
|
3. **Store listing** → Create your default store listing (title, description, screenshots)
|
|
75
|
-
- *
|
|
75
|
+
- *Copy-paste the values from the **Store Listing** table below, then re-run CI after setup to auto-upload future changes.*
|
|
76
76
|
4. **Content rating** → Complete the content rating questionnaire
|
|
77
77
|
5. **App pricing** → Set pricing and distribution countries
|
|
78
78
|
6. **First release** → Go to **Testing → Internal testing** → Click **Create new release**
|
|
@@ -84,8 +84,36 @@ Metadata and screenshots were uploaded by CI but **could not be saved** because
|
|
|
84
84
|
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.
|
|
85
85
|
SUMMARY
|
|
86
86
|
|
|
87
|
-
# --- Append
|
|
87
|
+
# --- Append store listing table (read from metadata files) ---
|
|
88
88
|
META_DIR="$PROJECT_ROOT/fastlane/metadata/en-US"
|
|
89
|
+
_app_name="" _short_desc="" _full_desc=""
|
|
90
|
+
[ -s "$META_DIR/title.txt" ] && _app_name=$(cat "$META_DIR/title.txt")
|
|
91
|
+
[ -s "$META_DIR/short_description.txt" ] && _short_desc=$(cat "$META_DIR/short_description.txt")
|
|
92
|
+
[ -s "$META_DIR/full_description.txt" ] && _full_desc=$(cat "$META_DIR/full_description.txt")
|
|
93
|
+
|
|
94
|
+
if [ -n "$_app_name" ] || [ -n "$_short_desc" ] || [ -n "$_full_desc" ]; then
|
|
95
|
+
{
|
|
96
|
+
echo ""
|
|
97
|
+
echo "### Store Listing (copy-paste into Google Play Console)"
|
|
98
|
+
echo ""
|
|
99
|
+
if [ -n "$_app_name" ] || [ -n "$_short_desc" ]; then
|
|
100
|
+
echo "| Field | Value |"
|
|
101
|
+
echo "|-------|-------|"
|
|
102
|
+
[ -n "$_app_name" ] && echo "| App Name (max 30 chars) | \`$_app_name\` |"
|
|
103
|
+
[ -n "$_short_desc" ] && echo "| Short description (max 80 chars) | \`$_short_desc\` |"
|
|
104
|
+
fi
|
|
105
|
+
if [ -n "$_full_desc" ]; then
|
|
106
|
+
echo ""
|
|
107
|
+
echo "**Full description** (max 4000 chars):"
|
|
108
|
+
echo ""
|
|
109
|
+
echo "~~~"
|
|
110
|
+
echo "$_full_desc"
|
|
111
|
+
echo "~~~"
|
|
112
|
+
fi
|
|
113
|
+
} >> "$GITHUB_STEP_SUMMARY"
|
|
114
|
+
fi
|
|
115
|
+
|
|
116
|
+
# --- Append app URLs table (read from metadata files) ---
|
|
89
117
|
_privacy_url="" _support_url="" _marketing_url="" _support_email=""
|
|
90
118
|
[ -s "$META_DIR/privacy_url.txt" ] && _privacy_url=$(cat "$META_DIR/privacy_url.txt")
|
|
91
119
|
[ -s "$META_DIR/support_url.txt" ] && _support_url=$(cat "$META_DIR/support_url.txt")
|