Skip to content
Snippets Groups Projects
Commit 31b66aa7 authored by Kamil Trzcińśki's avatar Kamil Trzcińśki
Browse files

Generate builds when creating tag using web interface

parent 5270cc69
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -42,6 +42,7 @@ v 8.3.3 (unreleased)
- Enable "Add key" button when user fills in a proper key (Stan Hu)
- Fix error in processing reply-by-email messages (Jason Lee)
- Fix Error 500 when visiting build page of project with nil runners_token (Stan Hu)
- Fix regression when builds were not generated for tags created through web/api interface
 
v 8.3.2
- Change single user API endpoint to return more detailed data (Michael Potthoff)
Loading
Loading
Loading
Loading
@@ -23,6 +23,7 @@ class CreateTagService < BaseService
EventCreateService.new.push(project, current_user, push_data)
project.execute_hooks(push_data.dup, :tag_push_hooks)
project.execute_services(push_data.dup, :tag_push_hooks)
CreateCommitBuildsService.new.execute(project, current_user, push_data)
 
if release_description
CreateReleaseService.new(@project, @current_user).
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment