@daemux/store-automator 0.10.11 → 0.10.13
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.13"
|
|
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.13",
|
|
16
16
|
"keywords": [
|
|
17
17
|
"flutter",
|
|
18
18
|
"app-store",
|
package/package.json
CHANGED
|
@@ -65,35 +65,27 @@ platform :android do
|
|
|
65
65
|
end
|
|
66
66
|
|
|
67
67
|
lane :upload_metadata_android do
|
|
68
|
-
#
|
|
69
|
-
#
|
|
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")
|
|
68
|
+
# Fetch the latest version code from the track so supply can resolve
|
|
69
|
+
# the correct release when multiple exist on the same track.
|
|
73
70
|
codes = google_play_track_version_codes(
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
track: track
|
|
71
|
+
**base_play_store_options,
|
|
72
|
+
track: ENV.fetch("GOOGLE_PLAY_TRACK", "internal")
|
|
77
73
|
)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
# Draft apps only accept draft releases. Use RELEASE_STATUS env var so
|
|
81
|
-
# this keeps working after the first production release.
|
|
74
|
+
version_code = codes.first || ENV.fetch("VERSION_CODE", "1")
|
|
82
75
|
status = ENV.fetch("RELEASE_STATUS", "draft")
|
|
83
76
|
|
|
84
77
|
link_screenshots_into_metadata
|
|
78
|
+
|
|
85
79
|
upload_to_play_store(
|
|
86
|
-
base_play_store_options
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
metadata_path: METADATA_DIR
|
|
96
|
-
)
|
|
80
|
+
**base_play_store_options,
|
|
81
|
+
track: ENV.fetch("GOOGLE_PLAY_TRACK", "internal"),
|
|
82
|
+
version_code: version_code,
|
|
83
|
+
release_status: status,
|
|
84
|
+
changes_not_sent_for_review: true,
|
|
85
|
+
skip_upload_aab: true,
|
|
86
|
+
skip_upload_apk: true,
|
|
87
|
+
metadata_path: METADATA_DIR,
|
|
88
|
+
skip_upload_changelogs: true
|
|
97
89
|
)
|
|
98
90
|
end
|
|
99
91
|
|