fastlane-plugin-jandi_webhook 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: 9b713caa222961a2d7ba4fb076bb7abe4e345adea28dbbe258cc067d8eeee22e
|
|
4
|
+
data.tar.gz: '07854aaa75e14fd8981f7deaf83d50c15fad0a9ec3d64db6a8a917b650d8c887'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58882c30139efb571f24a53be092d7867ad70b197a8bec130057c5ffd7e2f5d4a196688b0048d30ff70916f763370817ab0c8907d413f41d2c4dc23ad35a06c3
|
|
7
|
+
data.tar.gz: 37234f2ad410942c8dcf9233e17d99dbb919131c713ed456c6ba04b5f5f1bc25c83fa3cb1210c9ea1d995caba0439fbd3c1a4298daefeb598489676c4385b390
|
|
@@ -15,7 +15,7 @@ module Fastlane
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
message = {
|
|
18
|
-
body: "#{params[:appName]} 테스트 앱이
|
|
18
|
+
body: "#{params[:appName]} 테스트 앱이 배포되었습니다.\n#{params[:link]}",
|
|
19
19
|
connectColor: "#ea002c",
|
|
20
20
|
connectInfo: [
|
|
21
21
|
{
|
|
@@ -28,7 +28,7 @@ module Fastlane
|
|
|
28
28
|
UI.message(message.to_json)
|
|
29
29
|
UI.message("#{params[:jandi_url]} for #{params[:platform]} ")
|
|
30
30
|
|
|
31
|
-
Send the request
|
|
31
|
+
#Send the request
|
|
32
32
|
response = HTTParty.post(params[:jandi_url], :headers => headers, body: message.to_json)
|
|
33
33
|
UI.message("response : #{response}")
|
|
34
34
|
end
|
|
@@ -74,6 +74,12 @@ module Fastlane
|
|
|
74
74
|
env_name: "APP_NAME",
|
|
75
75
|
description: "app name",
|
|
76
76
|
optional: false,
|
|
77
|
+
type: String),
|
|
78
|
+
|
|
79
|
+
FastlaneCore::ConfigItem.new(key: :link,
|
|
80
|
+
env_name: "LINK",
|
|
81
|
+
description: "link",
|
|
82
|
+
optional: true,
|
|
77
83
|
type: String)
|
|
78
84
|
]
|
|
79
85
|
end
|