@daemux/store-automator 0.10.15 → 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.15"
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.15",
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.15",
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.15",
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"
@@ -84,6 +84,28 @@ Metadata and screenshots were uploaded by CI but **could not be saved** because
84
84
  ### After first release:
85
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.
86
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
87
109
  fi
88
110
  ci_skip "App is in draft status — manual first release required on Google Play Console"
89
111
  fi