From f91d45223528d07aa5d0caa8b542ca8a6e4f9be7 Mon Sep 17 00:00:00 2001 From: Jean-Denis Boivin Date: Wed, 15 May 2024 00:53:47 -0400 Subject: [PATCH] Fix iOS build App Store (permission issue) (#464) Co-authored-by: David Finol --- docs/03-github/06-deployment/ios.mdx | 1 + versioned_docs/version-2/03-github/06-deployment/ios.mdx | 1 + versioned_docs/version-3/03-github/06-deployment/ios.mdx | 1 + 3 files changed, 3 insertions(+) diff --git a/docs/03-github/06-deployment/ios.mdx b/docs/03-github/06-deployment/ios.mdx index a1c1ddc2..8a4afd47 100644 --- a/docs/03-github/06-deployment/ios.mdx +++ b/docs/03-github/06-deployment/ios.mdx @@ -480,6 +480,7 @@ jobs: eval "$(ssh-agent -s)" ssh-add - <<< "${MATCH_DEPLOY_KEY}" find $IOS_BUILD_PATH -type f -name "**.sh" -exec chmod +x {} \; + find $IOS_BUILD_PATH -type f -iname "usymtool" -exec chmod +x {} \; bundle install bundle exec fastlane ios release diff --git a/versioned_docs/version-2/03-github/06-deployment/ios.mdx b/versioned_docs/version-2/03-github/06-deployment/ios.mdx index 876f4dce..b49e1893 100644 --- a/versioned_docs/version-2/03-github/06-deployment/ios.mdx +++ b/versioned_docs/version-2/03-github/06-deployment/ios.mdx @@ -480,6 +480,7 @@ jobs: eval "$(ssh-agent -s)" ssh-add - <<< "${MATCH_DEPLOY_KEY}" find $IOS_BUILD_PATH -type f -name "**.sh" -exec chmod +x {} \; + find $IOS_BUILD_PATH -type f -iname "usymtool" -exec chmod +x {} \; bundle install bundle exec fastlane ios release diff --git a/versioned_docs/version-3/03-github/06-deployment/ios.mdx b/versioned_docs/version-3/03-github/06-deployment/ios.mdx index b791026a..bcbab5f1 100644 --- a/versioned_docs/version-3/03-github/06-deployment/ios.mdx +++ b/versioned_docs/version-3/03-github/06-deployment/ios.mdx @@ -480,6 +480,7 @@ jobs: eval "$(ssh-agent -s)" ssh-add - <<< "${MATCH_DEPLOY_KEY}" find $IOS_BUILD_PATH -type f -name "**.sh" -exec chmod +x {} \; + find $IOS_BUILD_PATH -type f -iname "usymtool" -exec chmod +x {} \; bundle install bundle exec fastlane ios release