@capgo/cli 8.48.2 → 8.49.1

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.
package/README.md CHANGED
@@ -177,6 +177,7 @@ Capgo continues to load the root config while writing only the selected source.
177
177
  - [Last-output](#build-last-output)
178
178
  - [Credentials](#build-credentials)
179
179
  - [Apple-key](#build-credentials-apple-key)
180
+ - [Ios-provisioning](#build-credentials-ios-provisioning)
180
181
  - [Save](#build-credentials-save)
181
182
  - [List](#build-credentials-list)
182
183
  - [Clear](#build-credentials-clear)
@@ -1617,6 +1618,30 @@ Example:
1617
1618
  | **--local** | <code>boolean</code> | Save into the per-project .capgo-credentials.json instead of the global file |
1618
1619
  | **--json** | <code>boolean</code> | Print the captured Key ID / Issuer ID / .p8 path as JSON |
1619
1620
 
1621
+ #### <a id="build-credentials-ios-provisioning"></a> 🔹 **Ios-provisioning**
1622
+
1623
+ ```bash
1624
+ npx @capgo/cli@latest build credentials ios-provisioning
1625
+ ```
1626
+
1627
+ Set up provisioning profiles for every signable iOS target.
1628
+ Reuses an eligible saved wildcard profile after confirmation, or generates
1629
+ missing App Store profiles with the saved App Store Connect .p8 key.
1630
+ npx @capgo/cli@latest build credentials ios-provisioning
1631
+
1632
+ **Example:**
1633
+
1634
+ ```bash
1635
+ Example:
1636
+ ```
1637
+
1638
+ **Options:**
1639
+
1640
+ | Param | Type | Description |
1641
+ | -------------- | ------------- | -------------------- |
1642
+ | **--local** | <code>boolean</code> | Use credentials from the current project |
1643
+ | **--global** | <code>boolean</code> | Use credentials from the global store |
1644
+
1620
1645
  #### <a id="build-credentials-save"></a> 🔹 **Save**
1621
1646
 
1622
1647
  ```bash