fastlane-plugin-ravn_mobile 0.1.4 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34103e40b9cc1752f949b285ade69d853753863eeb07210b06b8972615beebe7
|
4
|
+
data.tar.gz: cd794d5e20506e646aaf96cd985b6f9c6457e98b1ca4bfdd744e73f479abb242
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83f2a881d341edd04327cc11c639569c0f1e5e0ebb5f02ea882a210f030022646c4894db97be8bee532c9f72cab7b1c2c0e4320ae8dc87a7c64b88f16acd4d30
|
7
|
+
data.tar.gz: 58405864946d506273af265d682848ef5cc0f81cef8a00f5cfe2d44ca2caa6f87994a46229678b9dbdf41c523ffd45e9c246ba16c9b68b21bbf75a81ceb0c0d0
|
@@ -4,7 +4,6 @@ require_relative '../util/util'
|
|
4
4
|
|
5
5
|
module Fastlane
|
6
6
|
module Actions
|
7
|
-
|
8
7
|
class ImportRavnLanesAction < Action
|
9
8
|
IMPORT_URL = 'https://github.com/ravnhq/mobile-cicd'
|
10
9
|
IMPORT_VERSION = '~> 0.2'
|
@@ -18,8 +17,9 @@ module Fastlane
|
|
18
17
|
url = ImportRavnLanesAction::IMPORT_URL
|
19
18
|
path = platform == 'android' ? 'lanes/android.rb' : 'lanes/ios.rb'
|
20
19
|
dependencies = %w[lanes/util.rb]
|
20
|
+
cache_path = Dir.mktmpdir("ravn_lanes")
|
21
21
|
|
22
|
-
other_action.import_from_git(url
|
22
|
+
other_action.import_from_git(url: url, path: path, version: version, dependencies: dependencies, cache_path: cache_path)
|
23
23
|
end
|
24
24
|
|
25
25
|
#####################################################
|