module Gitlab::Client::ProjectReleases

def update_project_release(project, tag_name, options = {})

Returns:
  • (Gitlab::ObjectifiedHash) - Information about the updated release.

Options Hash: (**options)
  • :description(optional) (String) -- The description of the release. You can use markdown.
  • :name(optional) (String) -- The release name.

Parameters:
  • options (Hash) -- A customizable set of options.
  • tag_name (String) -- The tag where the release will be created from.
  • project (Integer, String) -- The ID or name of a project.
def update_project_release(project, tag_name, options = {})
  put("/projects/#{url_encode project}/releases/#{tag_name}", body: options)
end