@daemux/store-automator 0.10.15 → 0.10.17

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.15"
8
+ "version": "0.10.17"
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",
15
+ "version": "0.10.17",
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.15",
3
+ "version": "0.10.17",
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.15",
3
+ "version": "0.10.17",
4
4
  "description": "App Store & Google Play automation agents for Flutter app publishing",
5
5
  "author": {
6
6
  "name": "Daemux"
@@ -75,15 +75,36 @@ Metadata and screenshots were uploaded by CI but **could not be saved** because
75
75
  - *Note: CI uploaded this data but it was discarded. After completing setup, re-run CI to auto-upload.*
76
76
  4. **Content rating** → Complete the content rating questionnaire
77
77
  5. **App pricing** → Set pricing and distribution countries
78
- 6. **Release** → Go to **Testing → Internal testing** (or **Production**)
79
- - Click **Create new release**
78
+ 6. **First release** → Go to **Testing → Internal testing** Click **Create new release**
80
79
  - The AAB was already uploaded by CI — select it
81
80
  - Add release notes
82
- - Click **Review release** → **Start rollout**
81
+ - Click **Review release** → **Start rollout to internal testing**
83
82
 
84
83
  ### After first release:
85
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.
86
85
  SUMMARY
86
+
87
+ # --- Append app URLs table (read from metadata files) ---
88
+ META_DIR="$PROJECT_ROOT/fastlane/metadata/en-US"
89
+ _privacy_url="" _support_url="" _marketing_url="" _support_email=""
90
+ [ -s "$META_DIR/privacy_url.txt" ] && _privacy_url=$(cat "$META_DIR/privacy_url.txt")
91
+ [ -s "$META_DIR/support_url.txt" ] && _support_url=$(cat "$META_DIR/support_url.txt")
92
+ [ -s "$META_DIR/marketing_url.txt" ] && _marketing_url=$(cat "$META_DIR/marketing_url.txt")
93
+ _support_email=$(yq '.web.support_email // ""' "$PROJECT_ROOT/ci.config.yaml" 2>/dev/null || true)
94
+
95
+ if [ -n "$_privacy_url" ] || [ -n "$_support_url" ] || [ -n "$_marketing_url" ] || [ -n "$_support_email" ]; then
96
+ {
97
+ echo ""
98
+ echo "### App URLs (copy these during setup)"
99
+ echo ""
100
+ echo "| Field | Value |"
101
+ echo "|-------|-------|"
102
+ [ -n "$_privacy_url" ] && echo "| Privacy Policy URL | \`$_privacy_url\` |"
103
+ [ -n "$_support_url" ] && echo "| Support URL | \`$_support_url\` |"
104
+ [ -n "$_marketing_url" ] && echo "| Marketing URL | \`$_marketing_url\` |"
105
+ [ -n "$_support_email" ] && echo "| Support Email | \`$_support_email\` |"
106
+ } >> "$GITHUB_STEP_SUMMARY"
107
+ fi
87
108
  fi
88
109
  ci_skip "App is in draft status — manual first release required on Google Play Console"
89
110
  fi