We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e8fdad commit 88f3fbeCopy full SHA for 88f3fbe
ios/fastlane/4TV2PTBPVG.json
22 Bytes
ios/fastlane/Fastfile
@@ -1,9 +1,18 @@
1
default_platform(:ios)
2
3
+api_key_path = 'fastlane/4TV2PTBPVG.json'
4
+
5
platform :ios do
6
lane :devices do
- register_devices(devices_file: "./fastlane/devices.txt")
- match(type: "adhoc", force_for_new_devices: true)
7
+ register_devices(
8
+ api_key_path: api_key_path,
9
+ devices_file: "./fastlane/devices.txt"
10
+ )
11
+ match(
12
13
+ type: "adhoc",
14
+ force_for_new_devices: true
15
16
end
17
18
lane :build_ipa do
@@ -51,7 +60,7 @@ platform :ios do
51
60
52
61
commit = last_git_commit
53
62
upload_to_testflight(
54
- api_key_path: "fastlane/4TV2PTBPVG.json",
63
55
64
changelog: commit[:message],
56
65
distribute_external: true,
57
66
groups: "Public group"
0 commit comments