File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
examples/SampleApp/fastlane Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1313
1414jobs :
1515 build_and_deploy_ios_testflight_qa :
16- name : Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/fix/sample-app-crash-on-start ' }}
16+ name : Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/develop ' }}
1717 runs-on : [macos-15]
1818 steps :
1919 - name : Connect Bot
4141 bundle exec pod install
4242 - name : Build and release Testflight QA
4343 working-directory : examples/SampleApp
44- run : bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/fix/sample-app-crash-on-start ' }};
44+ run : bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/develop ' }};
4545 env :
4646 MATCH_PASSWORD : ${{ secrets.MATCH_PASSWORD }}
4747 MATCH_GIT_BASIC_AUTHORIZATION : ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
Original file line number Diff line number Diff line change @@ -33,7 +33,11 @@ lane :deploy_to_testflight_qa do |options|
3333 xcodeproj : xcode_project
3434 )
3535
36- current_build_number = 799
36+ current_build_number = app_store_build_number (
37+ api_key : appstore_api_key ,
38+ live : false ,
39+ app_identifier : bundle_id
40+ )
3741
3842 increment_build_number (
3943 build_number : current_build_number + 1 ,
You can’t perform that action at this time.
0 commit comments