Skip to content

Commit e315708

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

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

.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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,14 @@ platform :ios do
2525
)
2626
end
2727

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

0 commit comments

Comments
 (0)