Skip to content

Commit 841f4fc

Browse files
committed
fix: fastlane build error
1 parent 1bacf30 commit 841f4fc

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ jobs:
5050
- name: Tuist generate
5151
run: tuist generate
5252

53+
- run: fastlane test
54+
5355
- run: fastlane tf
5456
env:
5557
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}

fastlane/Fastfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,15 @@ platform :ios do
2525
)
2626
end
2727

28+
lane :test do
29+
ENV["FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT"] = "120"
30+
scan(
31+
workspace: "#{APP_NAME}.xcworkspace",
32+
scheme: "#{SCHEME}",
33+
devices: ["iPhone 16 Pro"]
34+
)
35+
end
36+
2837
# 테스트 플라이트 업로드
2938
desc "Push to TestFlight"
3039
lane :tf do |options|

0 commit comments

Comments
 (0)