From 18fec8695de139ae1c1395bb4ec90f71773f0912 Mon Sep 17 00:00:00 2001 From: Kudo Chien Date: Sat, 13 Jun 2026 22:53:19 +0800 Subject: [PATCH] [docs] add repack use_app_entitlements params (#46884) --- docs/pages/eas/workflows/pre-packaged-jobs.mdx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/pages/eas/workflows/pre-packaged-jobs.mdx b/docs/pages/eas/workflows/pre-packaged-jobs.mdx index 8ef7c02f0eff6b..24af60cc7a29be 100644 --- a/docs/pages/eas/workflows/pre-packaged-jobs.mdx +++ b/docs/pages/eas/workflows/pre-packaged-jobs.mdx @@ -1923,14 +1923,16 @@ Repack job is not suitable for the following use cases: You can pass the following parameters into the `params` list: -| Parameter | Type | Description | -| ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------- | -| build_id | string | Required. The source build ID of the build to repack. | -| profile | string | Optional. The build profile to use. Defaults to the profile of the source build retrieved from `build_id`. | -| embed_bundle_assets | boolean | Optional. Whether to embed the bundle assets in the repacked build. By default, this is automatically determined based on the source build. | -| js_bundle_only | boolean | Optional. Whether to only repack the JavaScript bundle. Defaults to false, which means the entire app metadata will be updated. | -| message | string | Optional. Custom message attached to the build. Corresponds to the `--message` flag when running `eas build`. | -| repack_version | string | Optional. The version of the `@expo/repack-app` to use. Defaults to the latest version. | +| Parameter | Type | Description | +| --------------------------------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| build_id | string | Required. The source build ID of the build to repack. | +| profile | string | Optional. The build profile to use. Defaults to the profile of the source build retrieved from `build_id`. | +| embed_bundle_assets | boolean | Optional. Whether to embed the bundle assets in the repacked build. By default, this is automatically determined based on the source build. | +| js_bundle_only | boolean | Optional. Whether to only repack the JavaScript bundle. Defaults to false, which means the entire app metadata will be updated. | +| message | string | Optional. Custom message attached to the build. Corresponds to the `--message` flag when running `eas build`. | +| repack_version | string | Optional. The version of the `@expo/repack-app` to use. Defaults to the latest version. | +| ios_signing_use_source_app_entitlements | boolean | Optional. Whether to use fastlane resign `use_app_entitlements` behavior: extract app bundle code signing entitlements and combine them with entitlements from the new provisioning profile. Defaults to false. | +| ios_signing_app_entitlements_path | string | Optional. Path to the entitlements file to use, for example, `myApp/MyApp.entitlements`. This is exclusive with `ios_signing_use_source_app_entitlements` | ### Examples