ETLane 0.1.68 → 0.1.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Lanes/CommonFastfile +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae76ec38c7e4e912687d367704e688d093435437790d921be2d31a6210b0c54b
|
|
4
|
+
data.tar.gz: dc16dda19a761de68db3313377a4613dcc06d64277f8f756c7f973f8e49aaed6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a7860132d5b752b98f8fb7eb5f9c6f2a9f4598ccabcdb761196710b74c088c337873017083d5893124ddeed150f0ead4fc2c73935f6ab1c68f6cc45312d4d3d
|
|
7
|
+
data.tar.gz: 63e57cbf9c42c50a759afdec100474257474cb26ec7e8e9c7584defe0c172e2d7800fe2908cf120983234283404d1c6be4a24d30c4b1222c13bac40d0a88b94c
|
data/Lanes/CommonFastfile
CHANGED
|
@@ -5,7 +5,6 @@ default_platform :ios
|
|
|
5
5
|
platform :ios do
|
|
6
6
|
|
|
7
7
|
product_bundle_identifier = CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)
|
|
8
|
-
distribute_group_name = options[:tf_group_name] || ENV["DISTRIBUTE_GROUP_NAME"]
|
|
9
8
|
project_name = ENV["PROJECT_NAME"]
|
|
10
9
|
|
|
11
10
|
build_folder = File.join(Dir.pwd, "..", "build")
|
|
@@ -14,6 +13,7 @@ platform :ios do
|
|
|
14
13
|
desc "Push a new beta build to TestFlight"
|
|
15
14
|
lane :beta do |options|
|
|
16
15
|
work_branch = options[:branch]|| ENV["ET_BRANCH"] || 'master'
|
|
16
|
+
distribute_group_name = options[:tf_group_name] || ENV["DISTRIBUTE_GROUP_NAME"]
|
|
17
17
|
setup_new_session(options)
|
|
18
18
|
provisioning_profile = "AppStore_#{product_bundle_identifier}"
|
|
19
19
|
username = options[:username]
|
|
@@ -295,6 +295,7 @@ platform :ios do
|
|
|
295
295
|
spaceship.team_id = fastlane_itc_team_id
|
|
296
296
|
app = Spaceship::Tunes::Application.find(product_bundle_identifier)
|
|
297
297
|
build = Spaceship::TestFlight::Build.latest(app_id: app.apple_id, platform: 'ios')
|
|
298
|
+
distribute_group_name = options[:tf_group_name] || ENV["DISTRIBUTE_GROUP_NAME"]
|
|
298
299
|
group = Spaceship::TestFlight::Group.find(app_id: app.apple_id, group_name: distribute_group_name)
|
|
299
300
|
build.add_group!(group)
|
|
300
301
|
# Find team id
|