Method: ApiClient#create_deployment

Defined in:
lib/uffizzi/clients/api/api_client.rb

#create_deployment(server, project_slug, params) ⇒ Object



210
211
212
213
214
215
# File 'lib/uffizzi/clients/api/api_client.rb', line 210

def create_deployment(server, project_slug, params)
  uri = deployments_uri(server, project_slug)
  response = http_client.make_post_request(uri, params)

  build_response(response)
end