fastlane-plugin-zhuixi_build_app 0.1.2 → 0.1.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3f8e3d39b63fc09e0bc3dd0712c92ea71eb3045b80ceeab2be7f9cc04fc2522
|
4
|
+
data.tar.gz: 26618db12e3bf8e5215f7b5410905bece8a66572675c77cfd59172daac50d77e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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.
|
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-
|
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
|