Skip to content

Commit 1ecab9c

Browse files
committed
Enable full run for workflow
1 parent b50edea commit 1ecab9c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
tuist install
4949
bundle exec fastlane upload_dsym_to_sentry
50-
bundle exec fastlane notify_all
50+
bundle exec fastlane upload_oneoff
5151
env:
5252
FASTLANE_USER: ${{ secrets.FASTLANE_USER }}
5353
FASTLANE_TEAM_ID: ${{ secrets.FASTLANE_TEAM_ID }}

Fastlane/Fastfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ platform :ios do
6262
upload_bundle_to_tuist
6363
upload_app_to_testflight
6464
notify_all
65-
run_tuist(testflight: false)
65+
unless ENV['CI']
66+
run_tuist(testflight: false)
67+
end
6668
bump_and_tag
6769
end
6870

@@ -90,7 +92,9 @@ platform :ios do
9092
upload_dsym_to_sentry
9193
upload_bundle_to_tuist
9294
upload_app_to_testflight
93-
run_tuist(testflight: false)
95+
unless ENV['CI']
96+
run_tuist(testflight: false)
97+
end
9498
end
9599

96100
desc "One-off ipa build"

0 commit comments

Comments
 (0)