Skip to content

Commit d4d612c

Browse files
committed
build, including bitcode and symbols
1 parent 568580f commit d4d612c

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

fastlane/platforms/ios.rb

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@
1515

1616
desc 'Provisions the profiles; bumps the build number; builds the app'
1717
lane :build do
18-
sh('security find-identity -v -p codesigning')
19-
20-
# Build the app
21-
gym(export_method: 'ad-hoc')
18+
gym(include_bitcode: true,
19+
include_symbols: true)
2220
end
2321

2422
desc 'Submit a new Beta Build to Testflight'
@@ -27,7 +25,7 @@
2725
increment_build_number(build_number: latest_testflight_build_number + 1,
2826
xcodeproj: ENV['GYM_PROJECT'])
2927

30-
gym(export_method: 'app-store')
28+
build
3129

3230
testflight
3331
end
@@ -41,7 +39,8 @@
4139
# Set up code signing correctly
4240
# (more information: https://codesigning.guide)
4341
match(type: 'appstore', readonly: true)
44-
match(type: 'adhoc', readonly: true)
42+
43+
sh('security find-identity -v -p codesigning')
4544

4645
# set the app version
4746
set_version
@@ -87,8 +86,6 @@
8786
password: password,
8887
timeout: 3600)
8988

90-
match(readonly: true)
91-
9289
sh("security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k #{password} #{keychain}")
9390
end
9491
end

0 commit comments

Comments
 (0)