Skip to content

Commit 48dd80e

Browse files
committed
fix: fastlane build error
1 parent 1bacf30 commit 48dd80e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ on:
66

77
jobs:
88
upload_testflight:
9-
runs-on: macos-latest
9+
runs-on: macos-15.5
1010
steps:
1111
- uses: actions/checkout@v2
1212
- uses: maxim-lobanov/setup-xcode@v1
1313
with:
14-
xcode-version: 16.2.0
14+
xcode-version: 16.1.0
1515
- uses: shimataro/ssh-key-action@v2
1616
with:
1717
key: ${{ secrets.SSH_KEY }}

fastlane/Fastfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ platform :ios do
7272
workspace: "#{APP_NAME}.xcworkspace",
7373
scheme: "#{SCHEME}",
7474
export_method: "app-store",
75-
xcargs: "-allowProvisioningUpdates"
75+
destination: "generic/platform=iOS",
76+
sdk: "iphoneos",
77+
xcargs: "-allowProvisioningUpdates",
78+
clean: true
7679
)
7780

7881
# ✅ 테스트 플라이트 업로드

0 commit comments

Comments
 (0)