@daemux/store-automator 0.10.11 → 0.10.12

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.11"
8
+ "version": "0.10.12"
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.11",
15
+ "version": "0.10.12",
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.11",
3
+ "version": "0.10.12",
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.11",
3
+ "version": "0.10.12",
4
4
  "description": "App Store & Google Play automation agents for Flutter app publishing",
5
5
  "author": {
6
6
  "name": "Daemux"
@@ -65,35 +65,25 @@ platform :android do
65
65
  end
66
66
 
67
67
  lane :upload_metadata_android do
68
- # supply always calls fetch_track_and_release! even for metadata-only
69
- # uploads. When the track contains multiple releases and no version_code
70
- # is given it errors with "more than one release found". We resolve this
71
- # by fetching the latest version code from the track first.
72
- track = ENV.fetch("TRACK", "internal")
73
- codes = google_play_track_version_codes(
74
- package_name: ENV["PACKAGE_NAME"],
75
- json_key: ENV["GOOGLE_PLAY_SERVICE_ACCOUNT_JSON_PATH"],
76
- track: track
77
- )
78
- latest_code = codes.max
79
-
80
- # Draft apps only accept draft releases. Use RELEASE_STATUS env var so
81
- # this keeps working after the first production release.
82
- status = ENV.fetch("RELEASE_STATUS", "draft")
83
-
68
+ # Metadata (title, descriptions) and images/screenshots are app-level
69
+ # properties, NOT release-level. Passing track/release_status causes
70
+ # supply to create or update a release during the edit commit. For draft
71
+ # apps (never published) Google rejects any non-draft release, the commit
72
+ # fails, and ALL metadata changes are discarded.
73
+ #
74
+ # By omitting track, version_code, and release_status we upload only
75
+ # store-listing data. The edit commits without touching any release.
84
76
  link_screenshots_into_metadata
85
77
  upload_to_play_store(
86
- base_play_store_options.merge(
87
- version_code: latest_code,
88
- release_status: status,
89
- skip_upload_aab: true,
90
- skip_upload_apk: true,
91
- skip_upload_metadata: false,
92
- skip_upload_screenshots: false,
93
- skip_upload_images: false,
94
- skip_upload_changelogs: true,
95
- metadata_path: METADATA_DIR
96
- )
78
+ package_name: ENV["PACKAGE_NAME"],
79
+ json_key: ENV["GOOGLE_PLAY_SERVICE_ACCOUNT_JSON_PATH"],
80
+ skip_upload_aab: true,
81
+ skip_upload_apk: true,
82
+ skip_upload_metadata: false,
83
+ skip_upload_screenshots: false,
84
+ skip_upload_images: false,
85
+ skip_upload_changelogs: true,
86
+ metadata_path: METADATA_DIR
97
87
  )
98
88
  end
99
89