@radhya/mach 2.0.0 → 2.0.2
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 +5 -0
- package/dist/index.js +179 -154
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -128,6 +128,7 @@ mach agent uninstall
|
|
|
128
128
|
| `--dry-run` | Generate build script without running it |
|
|
129
129
|
| `--simulator` | iOS Simulator build (no signing needed) |
|
|
130
130
|
| `--auto-version` | Force Android versionCode or iOS buildNumber lookup from the store |
|
|
131
|
+
| `--auto-submit` | Submit the successful build to App Store Connect or Google Play |
|
|
131
132
|
| `--verbose` | Enable detailed build logging |
|
|
132
133
|
| `--json-output` | Write build metadata (`buildId`, Dashboard URL, status) to a JSON file for CI/CD |
|
|
133
134
|
|
|
@@ -395,6 +396,10 @@ For Android dev-client builds, Mach defaults to Gradle `assembleDebug` so the ou
|
|
|
395
396
|
mach submit --latest --platform android --profile production
|
|
396
397
|
mach submit --latest --platform ios --profile production
|
|
397
398
|
|
|
399
|
+
# Build and submit the exact successful build in one command
|
|
400
|
+
mach build --platform ios --profile production --auto-submit
|
|
401
|
+
mach build --platform android --profile production --auto-submit --submit-track internal
|
|
402
|
+
|
|
398
403
|
# Android track and release status can be supplied on the command or in mach.config.json
|
|
399
404
|
mach submit --latest --platform android --profile production --track internal --release-status completed
|
|
400
405
|
|