Skip to content

Commit

Permalink
Fix: Notify message is a string
Browse files Browse the repository at this point in the history
Fix: New host and endpoint
  • Loading branch information
Alesete committed Jun 11, 2019
1 parent c47b423 commit f4bdcfa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/fastlane/plugin/applivery/actions/applivery_action.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ def self.run(params)
notify_collaborators = params[:notify_collaborators]
notify_employees = params[:notify_employees]

command = "curl \"https://dashboard.applivery.com/api/builds\""
command = "curl \"https://api.applivery.io/v1/integrations/builds\""
command += " -H \"Authorization: bearer #{app_token}\""
command += " -F versionName=\"#{name}\""
command += " -F changelog=\"#{notes}\""
command += " -F changelog=\"#{changelog}\""
command += " -F notifyCollaborators=#{notify_collaborators}"
command += " -F notifyEmployees=#{notify_employees}"
command += " -F tags=\"#{tags}\""
Expand Down Expand Up @@ -97,9 +97,9 @@ def self.available_options
FastlaneCore::ConfigItem.new(key: :notify_message,
env_name: "APPLIVERY_NOTIFY_MESSAGE",
description: "Notification message to be sent along with email notifications",
default_value: true,
default_value: "New version uploaded!",
optional: true,
is_string: false),
type: String),

]
end
Expand Down

0 comments on commit f4bdcfa

Please sign in to comment.