@daemux/store-automator 0.10.22 → 0.10.23

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.22"
8
+ "version": "0.10.23"
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.22",
15
+ "version": "0.10.23",
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.22",
3
+ "version": "0.10.23",
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.22",
3
+ "version": "0.10.23",
4
4
  "description": "App Store & Google Play automation agents for Flutter app publishing",
5
5
  "author": {
6
6
  "name": "Daemux"
@@ -56,11 +56,11 @@ set -e
56
56
  echo "$FASTLANE_OUTPUT"
57
57
 
58
58
  if [ $FASTLANE_EXIT -ne 0 ]; then
59
- # Google Play API rejects non-draft edits on apps that have never been
60
- # published. This resolves after the first manual release via the Play
61
- # Console, so we warn instead of failing the workflow.
59
+ # Google Play API rejects all edits on draft apps (apps that have never
60
+ # passed Google review). Submitting to closed testing and getting approved
61
+ # removes draft status. We warn instead of failing the workflow.
62
62
  if echo "$FASTLANE_OUTPUT" | grep -qi "draft app"; then
63
- echo "::warning title=Google Play Draft App::First manual release required. See job summary for instructions."
63
+ echo "::warning title=Google Play Draft App::Closed testing submission required to exit draft status. See job summary for instructions."
64
64
  if [ -n "${GITHUB_STEP_SUMMARY:-}" ]; then
65
65
  cat >> "$GITHUB_STEP_SUMMARY" << 'SUMMARY'
66
66
  ## :warning: Google Play Draft App — Closed Testing Required (Internal Testing Is NOT Enough)
@@ -148,7 +148,7 @@ SUMMARY
148
148
  } >> "$GITHUB_STEP_SUMMARY"
149
149
  fi
150
150
  fi
151
- ci_skip "App is in draft status — manual first release required on Google Play Console"
151
+ ci_skip "App is in draft status — submit to closed testing on Google Play Console to exit draft"
152
152
  fi
153
153
  exit $FASTLANE_EXIT
154
154
  fi