File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -310,6 +310,11 @@ jobs:
310310            run_tests : true 
311311            objc : false 
312312            swift : true 
313+             setup_command : | 
314+               mkdir -p quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics 
315+               # Set the deployed pod location of run and upload-symbols with the development pod version. 
316+               cp Crashlytics/run quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/ 
317+               cp Crashlytics/upload-symbols quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/ 
313318product : ABTesting 
314319            plist_src_path : scripts/gha-encrypted/qs-abtesting.plist.gpg 
315320            plist_dst_path : quickstart-ios/abtesting/GoogleService-Info.plist 
@@ -337,13 +342,9 @@ jobs:
337342          prerelease_testing 
338343name : Install Secret GoogleService-Info.plist 
339344      run : scripts/decrypt_gha_secret.sh ${{ matrix.plist_src_path }} ${{ matrix.plist_dst_path }} "$plist_secret" 
340-     - name : Setup 
341-       if : matrix.product == "Crashlytics" 
342-       run : | 
343-         mkdir -p quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics 
344-         # Set the deployed pod location of run and upload-symbols with the development pod version. 
345-         cp Crashlytics/run quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/ 
346-         cp Crashlytics/upload-symbols quickstart-ios/crashlytics/LegacyCrashlyticsQuickstart/Pods/FirebaseCrashlytics/ 
345+     - name : Run setup command, if needed. 
346+       if : matrix.setup_command != '' 
347+       run : ${{ matrix.setup_command }} 
347348    - name : Test Swift quickstart 
348349      if : matrix.swift == true 
349350      run : | 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments