File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 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'
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
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
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
9491end
You can’t perform that action at this time.
0 commit comments