File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed
apps/app/android/fastlane Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 3838private_lane :populate_metadata do
3939 metadata_path = "metadata"
4040
41- metadata_full_path = File . expand_path ( metadata_path , Dir . pwd )
42-
4341 unless File . exist? ( metadata_path )
44- UI . message ( "Running 'fastlane supply init' from android folder..." )
45-
46- # Change directory to android and run init there
47- Dir . chdir ( "android" ) do
48- sh ( "fastlane supply init --metadata_path #{ metadata_path } " )
49- end
42+ UI . message ( "Running 'fastlane supply init' to initialize supply metadata..." )
43+ sh ( "fastlane supply init --metadata_path #{ metadata_path } " )
5044 else
5145 UI . message ( "✅ Supply metadata already initialized." )
5246 end
@@ -68,7 +62,6 @@ private_lane :populate_metadata do
6862end
6963
7064
71-
7265lane :deploy do
7366 Actions . lane_context [ :PACKAGE_NAME ] = "com.mysimplehub"
7467
@@ -90,7 +83,8 @@ lane :deploy do
9083 package_name : Actions . lane_context [ :PACKAGE_NAME ] ,
9184 skip_upload_changelogs : true ,
9285 aab : aab_path ,
93- metadata_path : 'metadata'
86+ metadata_path : 'metadata' ,
87+ skip_upload_changelogs : true
9488 )
9589
9690end
You can’t perform that action at this time.
0 commit comments