fastlane-plugin-semantic_release_workflow 1.0.5 → 1.0.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: 773b1f828b05184acc2a86ccc0f0d2cedf5e9bb385fd4d4b3452be54ca39dd72
|
4
|
+
data.tar.gz: b8911393421560920dc15e2cae66ee794b734f1bd333f1bfed49e64d21b021e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8427a3014d612f6439dc66e326043790a4cf2673ce08d982fefd31b9c64d5978d5a5d2d7dbaf0fdf84a61f9692ac8cb141ffbbee881f06a9aea237f47a782e39
|
7
|
+
data.tar.gz: 73a9f6f8814015e2c25943ebb87586fb1a77f959e815937a07b8696ef3644eef80e93f7b1073e5622988668f9689ae378a47d7ed117a55e24a4fb17615a4a80d
|
@@ -17,7 +17,7 @@ module Fastlane
|
|
17
17
|
req['Content-Type'] = 'application/json'
|
18
18
|
req['PRIVATE-TOKEN'] = params[:private_token]
|
19
19
|
req.body = {
|
20
|
-
"assets":
|
20
|
+
"assets": params[:assets],
|
21
21
|
"description": params[:description],
|
22
22
|
"milestones": [],
|
23
23
|
"name": params[:title],
|
@@ -81,6 +81,11 @@ module Fastlane
|
|
81
81
|
key: :branch_name,
|
82
82
|
description: "Git branch name",
|
83
83
|
optional: false
|
84
|
+
),
|
85
|
+
FastlaneCore::ConfigItem.new(
|
86
|
+
key: :assets,
|
87
|
+
description: "Release assets",
|
88
|
+
optional: true
|
84
89
|
)
|
85
90
|
]
|
86
91
|
end
|
@@ -1 +1 @@
|
|
1
|
-
module Fastlane module SemanticReleaseWorkflow VERSION = "1.0.
|
1
|
+
module Fastlane module SemanticReleaseWorkflow VERSION = "1.0.6" end end
|