fastlane-plugin-stream_actions 0.3.43 → 0.3.45

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c2d6f09374fa39e0829509406f8dda6c9ed0e036fb01dba0a353cd78829c721
4
- data.tar.gz: 269a574b41262d9c91fdefd499c95752a8b02bc713d4a12b79f9e05dfbba5bdd
3
+ metadata.gz: 43d1174ea2669d83e8d04e8197e33e44d0150994ac7247871d141a3514f7102b
4
+ data.tar.gz: 3f11607e25d9f24379a290880b916bf0dbfa022847be948ae5a5b5157536b5d4
5
5
  SHA512:
6
- metadata.gz: 6ad5c9b54c1e1f6c1b8b97408a01749cc5285c896a6ad4e6dcf7ae5633c0e3f6d34f7be2c289ed402fe3f00f9989799b872c3a72ce2be35fbadedd116a7a1941
7
- data.tar.gz: 4c49626b2bd0f897d49a877cb1ede5887cc71c60bc8179b57c4a1340b11a29bb7e303d218aebf477c29029da905e9fc26c7f6b3673727aa03d9180ecd2afd030
6
+ metadata.gz: e67f7aedfd9e3f65f5fd796eac6a53071aaf46c6faa729e4ff05896b71a8641ae954f87f00cff30dfc7e11c150f7a63621a6feee49eb85f89b5b9ac5001d01fd
7
+ data.tar.gz: 907355f2f2568ac15646fceaa90c6ea30f4b86bb25abad8afbbe3f2df88d02b1e3a255e4abbbbc3722ca8ced874c9250e3a373b4ebcac11e1f5f46c55c719455
@@ -11,7 +11,7 @@ module Fastlane
11
11
  if simulators.empty?
12
12
  Dir.chdir('..') do
13
13
  sh("echo 'iOS #{params[:version]} Simulator' | ipsw download xcode --sim") if Dir['*.dmg'].first.nil?
14
- sh("./Scripts/install_ios_runtime.sh #{Dir['*.dmg'].first}")
14
+ sh("sh #{params[:custom_script]} #{Dir['*.dmg'].first}")
15
15
  UI.success("iOS #{params[:version]} Runtime successfuly installed")
16
16
  end
17
17
  else
@@ -32,6 +32,10 @@ module Fastlane
32
32
  FastlaneCore::ConfigItem.new(
33
33
  key: :version,
34
34
  description: 'iOS Version'
35
+ ),
36
+ FastlaneCore::ConfigItem.new(
37
+ key: :custom_script,
38
+ description: 'Path to custom script to install the runtime'
35
39
  )
36
40
  ]
37
41
  end
@@ -10,7 +10,7 @@ module Fastlane
10
10
  metrics_dir = 'metrics'
11
11
  FileUtils.remove_dir(metrics_dir, force: true)
12
12
  sdk_size_path = "#{metrics_dir}/#{params[:github_repo].split('/').last}-size.json"
13
- sh("git clone git@github.com:GetStream/apple-internal-metrics.git #{metrics_dir}/")
13
+ sh("git clone git@github.com:GetStream/stream-internal-metrics.git #{metrics_dir}/")
14
14
  is_release = other_action.current_branch.include?('release/')
15
15
  benchmark_config = JSON.parse(File.read(sdk_size_path))
16
16
  benchmark_key = is_release ? 'release' : 'develop'
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.43'
3
+ VERSION = '0.3.45'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.43
4
+ version: 0.3.45
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream