-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFastfile
58 lines (49 loc) · 1.46 KB
/
Fastfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
desc "Upload IPA file and Send an email to single email"
lane :testSingleEmail do
gym
appbox(
emails:'[email protected]'
)
end
desc "Upload IPA file and Send email to multiple commas separated emails"
lane :testMultipleEmail do
gym
appbox(
emails:'[email protected],[email protected]'
)
end
desc "Upload IPA file and Send email with a custom message."
lane :testEmailWithCustomMessage do
gym
appbox(
emails:'[email protected]',
message: '{PROJECT_NAME} - {BUILD_VERSION}({BUILD_NUMBER}) is ready to test.',
)
end
desc "Upload IPA file where AppBox available at some custom path instead of macOS Application Directory."
lane :testAppBoxWithCustomPath do
gym
appbox(
emails:'[email protected]',
appbox_path:'/Users/vineetchoudhary/Desktop/AppBox2.8.0/AppBox.app',
)
end
desc "Upload IPA file and keep the same link for all future upload IPAs."
lane :testKeepSameLink do
gym
appbox(
emails:'[email protected]',
message: '{PROJECT_NAME} - {BUILD_VERSION}({BUILD_NUMBER}) is ready to test.',
keep_same_link: true,
)
end
desc "Upload IPA file and keep the same link for all future upload IPAs in Custom Dropbox folder."
lane :testCustomDBFolderName do
gym
appbox(
emails:'[email protected]',
message: '{PROJECT_NAME} - {BUILD_VERSION}({BUILD_NUMBER}) is ready to test.',
keep_same_link: true,
dropbox_folder_name: 'Fastlane-Demo-Keep-Same-Link',
)
end