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 38
38
private_lane :populate_metadata do
39
39
metadata_path = "metadata"
40
40
41
- metadata_full_path = File . expand_path ( metadata_path , Dir . pwd )
42
-
43
41
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 } " )
50
44
else
51
45
UI . message ( "✅ Supply metadata already initialized." )
52
46
end
@@ -68,7 +62,6 @@ private_lane :populate_metadata do
68
62
end
69
63
70
64
71
-
72
65
lane :deploy do
73
66
Actions . lane_context [ :PACKAGE_NAME ] = "com.mysimplehub"
74
67
@@ -90,7 +83,8 @@ lane :deploy do
90
83
package_name : Actions . lane_context [ :PACKAGE_NAME ] ,
91
84
skip_upload_changelogs : true ,
92
85
aab : aab_path ,
93
- metadata_path : 'metadata'
86
+ metadata_path : 'metadata' ,
87
+ skip_upload_changelogs : true
94
88
)
95
89
96
90
end
You can’t perform that action at this time.
0 commit comments