From cc3f118a1b7b3322e26ad5b24fbb416a6778d8ba Mon Sep 17 00:00:00 2001 From: Rudrank Riyam Date: Mon, 14 Sep 2026 14:51:30 +0530 Subject: [PATCH] docs(skills): use asc export for macOS packages --- skills/asc-xcode-build/SKILL.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/skills/asc-xcode-build/SKILL.md b/skills/asc-xcode-build/SKILL.md index edc8216..7d3d0ab 100644 --- a/skills/asc-xcode-build/SKILL.md +++ b/skills/asc-xcode-build/SKILL.md @@ -172,24 +172,24 @@ asc xcode archive \ --output json ``` -If your macOS export produces a `.pkg`, use Xcode export with your `ExportOptions.plist`, then upload the package: +If your macOS export produces a `.pkg`, export it with the helper, then upload the package: ```bash -xcodebuild -exportArchive \ - -archivePath ".asc/artifacts/MacApp.xcarchive" \ - -exportPath ".asc/artifacts/MacAppExport" \ - -exportOptionsPlist "ExportOptions.plist" \ - -allowProvisioningUpdates +asc xcode export \ + --archive-path ".asc/artifacts/MacApp.xcarchive" \ + --pkg-path ".asc/artifacts/MacApp.pkg" \ + --xcodebuild-flag=-allowProvisioningUpdates \ + --output json asc builds upload \ --app "APP_ID" \ - --pkg ".asc/artifacts/MacAppExport/MacApp.pkg" \ + --pkg ".asc/artifacts/MacApp.pkg" \ --version "1.0.0" \ --build-number "123" \ --wait ``` -For `.pkg` uploads, `--version` and `--build-number` are required because they are not auto-extracted like IPA metadata. +For `.pkg` uploads, `--version` and `--build-number` are required because they are not auto-extracted like IPA metadata. Add `--export-options "ExportOptions.plist"` when the project needs a custom export configuration. ## Raw xcodebuild fallback