@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.
|
|
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.
|
|
15
|
+
"version": "0.10.12",
|
|
16
16
|
"keywords": [
|
|
17
17
|
"flutter",
|
|
18
18
|
"app-store",
|
package/package.json
CHANGED
|
@@ -65,35 +65,25 @@ platform :android do
|
|
|
65
65
|
end
|
|
66
66
|
|
|
67
67
|
lane :upload_metadata_android do
|
|
68
|
-
#
|
|
69
|
-
#
|
|
70
|
-
#
|
|
71
|
-
#
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
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
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
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
|
|