Method: Gitlab::Client::ProjectReleases#update_project_release

Defined in:
lib/gitlab/client/project_releases.rb

#update_project_release(project, tag_name, options = {}) ⇒ Gitlab::ObjectifiedHash

Updates a release.

Examples:

Gitlab.update_project_release(5, 'v0.3', { name: 'New Release', description: 'Super nice release' })

Parameters:

  • project (Integer, String)

    The ID or name of a project.

  • tag_name (String)

    The tag where the release will be created from.

  • options (Hash) (defaults to: {})

    A customizable set of options.

Options Hash (options):

  • :name(optional) (String)

    The release name.

  • :description(optional) (String)

    The description of the release. You can use markdown.

Returns:


63
64
65
# File 'lib/gitlab/client/project_releases.rb', line 63

def update_project_release(project, tag_name, options = {})
  put("/projects/#{url_encode project}/releases/#{tag_name}", body: options)
end