gitlab icon indicating copy to clipboard operation
gitlab copied to clipboard

Calling `create_release` causes 404 error on Gitlab 14.0

Open divanikus opened this issue 4 years ago • 0 comments

Long story short, using Tags API to create releases with descriptions is now forbidden and you have to move to Releases API.

Something like that should work:

    def create_release(project, tag, description)
      post("/projects/#{url_encode project}/releases", body: { tag_name: tag, description: description })
    end

divanikus avatar Jun 25 '21 15:06 divanikus