fastlane-plugin-zhuixi_build_app 0.1.2 → 0.1.3

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: 38956b2dd0fad0ed2d0bbb1bfefa736bea90a1e4a725873d0a138717c107581e
4
- data.tar.gz: d5ccfcbd1b7b966e5e201e2818b9687f3985654c5e5f63d5b613f635d28bf61b
3
+ metadata.gz: c3f8e3d39b63fc09e0bc3dd0712c92ea71eb3045b80ceeab2be7f9cc04fc2522
4
+ data.tar.gz: 26618db12e3bf8e5215f7b5410905bece8a66572675c77cfd59172daac50d77e
5
5
  SHA512:
6
- metadata.gz: 7c4fbdc4c2758e8ceae66d4a3466dbf721eb6b7874a7fc5dd43d1acb2b9739d19949c4c3911245a37f64ea572c448fbf06419ab8b0ecdde798bceebef8291521
7
- data.tar.gz: e07d35e737956cb8b6eb5f07ffa133240cd78fcfeb35f59c515aaef2280386442561a8f6df9dc4952fd02a7663dde6cee5e9f26c3e9317ebf5845868138a0ad3
6
+ metadata.gz: 8c6c12dce835fe7101e0aa87dee2ebb36226655c47e981343fa730ad9c0ba809cdd94155504072c70b6cdb0779c70d454a181e0dd986f71785ff0f46a14c5085
7
+ data.tar.gz: 7b162cdb980f7fd74ae4561705a305fdd65f1a9abfd261ab9360c5f88d7691438aeb251e8c7de8a9e2e99357e2f23cd93c57dedf408b5658f2cd3ebd517321d5
@@ -0,0 +1,51 @@
1
+ require "fastlane/action"
2
+ require_relative "../helper/zhuixi_build_app_helper"
3
+
4
+ module Fastlane
5
+ module Actions
6
+ class ZhuixiBuildAppAction < Action
7
+ def self.run(params)
8
+ # 触发内部 lane
9
+ Fastlane::LaneManager.cruise_lane(
10
+ "build_app", # 内部 lane 名
11
+ app_file_path: params, # 参数
12
+ )
13
+ end
14
+
15
+ def self.description
16
+ "build ios app from different channel"
17
+ end
18
+
19
+ def self.authors
20
+ ["RedSevenMale"]
21
+ end
22
+
23
+ def self.return_value
24
+ # If your method provides a return value, you can describe here what it does
25
+ end
26
+
27
+ def self.details
28
+ # Optional:
29
+ "build ios app from different channel"
30
+ end
31
+
32
+ def self.available_options
33
+ [
34
+ # FastlaneCore::ConfigItem.new(key: :your_option,
35
+ # env_name: "ZHUIXI_BUILD_APP_YOUR_OPTION",
36
+ # description: "A description of your option",
37
+ # optional: false,
38
+ # type: String)
39
+ ]
40
+ end
41
+
42
+ def self.is_supported?(platform)
43
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
44
+ # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
45
+ #
46
+ # [:ios, :mac, :android].include?(platform)
47
+ true
48
+ end
49
+ end
50
+ end
51
+ end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module ZhuixiBuildApp
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-zhuixi_build_app
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - RedSevenMale
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-23 00:00:00.000000000 Z
11
+ date: 2023-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -160,6 +160,7 @@ files:
160
160
  - README.md
161
161
  - lib/fastlane/plugin/zhuixi_build_app.rb
162
162
  - lib/fastlane/plugin/zhuixi_build_app/actions/read_config_action.rb
163
+ - lib/fastlane/plugin/zhuixi_build_app/actions/zhuixi_build_app_action.rb
163
164
  - lib/fastlane/plugin/zhuixi_build_app/helper/zhuixi_build_app_helper.rb
164
165
  - lib/fastlane/plugin/zhuixi_build_app/version.rb
165
166
  homepage: https://github.com/RedSevenMale/fastlane-plugin-zhuixi_build_app