Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/03-github/06-deployment/ios.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -460,9 +460,9 @@ jobs:
path: build/iOS

- name: Select Xcode
run: |
sudo xcode-select --switch /Applications/Xcode_16.4.app
xcodebuild -downloadPlatform iOS
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '16.4'

- name: Fix File Permissions and Run fastlane
env:
Expand All @@ -482,6 +482,7 @@ jobs:
IOS_BUNDLE_ID: com.company.application # Change it to match your Unity bundle id
PROJECT_NAME: Your Project Name # Change it to match your project's name
run: |
xcodebuild -downloadPlatform iOS
eval "$(ssh-agent -s)"
ssh-add - <<< "${MATCH_DEPLOY_KEY}"
find $IOS_BUILD_PATH -type f -name "**.sh" -exec chmod +x {} \;
Expand Down