fastlane-plugin-semantic_release_workflow 1.0.3 → 1.0.4
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: 2a0b037c3c5f97487977b2880898e51ed4036882edce26ef4efb978e8cf755ad
|
4
|
+
data.tar.gz: 4f73caa13949847083899ab10b5c4a40520343f96475f966d334b53b4a5d5524
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abc3a3261bce95c5ad3abe116996ec3752ae035cf0fc6de2c70107dfb2df555e453dfeab5b4fd00b8a90bbd9fb06e8adc1380cc95f4fd51893c586b4b2b58256
|
7
|
+
data.tar.gz: 1315558f42d36b3d0243159c0c8985565ff91e743dbc2466e1865055c053c11183d839f5b8e57bd8a4c508e7289c0b501fb4cb2805551b45fd05234e477968fc
|
@@ -22,7 +22,7 @@ module Fastlane
|
|
22
22
|
"description": params[:description],
|
23
23
|
"milestones": [],
|
24
24
|
"name": params[:title],
|
25
|
-
"ref":
|
25
|
+
"ref": params[:branch_name],
|
26
26
|
"tag_name": params[:tag]
|
27
27
|
}.to_json
|
28
28
|
res = http.request(req)
|
@@ -77,6 +77,11 @@ module Fastlane
|
|
77
77
|
key: :tag,
|
78
78
|
description: "Release tag",
|
79
79
|
optional: true
|
80
|
+
),
|
81
|
+
FastlaneCore::ConfigItem.new(
|
82
|
+
key: :branch_name,
|
83
|
+
description: "Git branch name",
|
84
|
+
optional: false
|
80
85
|
)
|
81
86
|
]
|
82
87
|
end
|
@@ -1 +1 @@
|
|
1
|
-
module Fastlane module SemanticReleaseWorkflow VERSION = "1.0.
|
1
|
+
module Fastlane module SemanticReleaseWorkflow VERSION = "1.0.4" end end
|