@daemux/store-automator 0.10.78 → 0.10.79
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.79"
|
|
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.79",
|
|
16
16
|
"keywords": [
|
|
17
17
|
"flutter",
|
|
18
18
|
"app-store",
|
package/package.json
CHANGED
|
@@ -35,6 +35,7 @@ Writes nothing to stdout that would leak secrets.
|
|
|
35
35
|
from __future__ import annotations
|
|
36
36
|
|
|
37
37
|
import base64
|
|
38
|
+
import json
|
|
38
39
|
import os
|
|
39
40
|
import subprocess
|
|
40
41
|
from pathlib import Path
|
|
@@ -253,6 +254,15 @@ def main() -> None:
|
|
|
253
254
|
for bid, pname, uuid in mappings:
|
|
254
255
|
print(f" {bid} -> {pname} ({uuid})")
|
|
255
256
|
|
|
257
|
+
# Persist the bundle_id -> profile_name map so later steps (exportArchive)
|
|
258
|
+
# can build ExportOptions.plist's `provisioningProfiles` dict without
|
|
259
|
+
# re-deriving it. JSON keeps it trivial to parse from bash/python.
|
|
260
|
+
map_path = Path(runner_temp) / "signing_map.json"
|
|
261
|
+
map_path.write_text(
|
|
262
|
+
json.dumps({bid: pname for bid, pname, _ in mappings}, indent=2)
|
|
263
|
+
)
|
|
264
|
+
print(f"Wrote signing map to {map_path}")
|
|
265
|
+
|
|
256
266
|
p12_pass = "ci"
|
|
257
267
|
p12_path = Path(runner_temp) / "cert.p12"
|
|
258
268
|
write_p12(private_key, cert_der, p12_path, p12_pass)
|