Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-01-11 20:53:06 +0300
committerRobert Speicher <robert@gitlab.com>2016-01-11 20:53:06 +0300
commit5dad714df6a95413d04c954577a5627234647648 (patch)
tree3285bc224618df610cbae0152fe3beea9712f596 /app
parent5d63ad21a6c0f89b2e1583296464e80b71e11e2c (diff)
parent31b66aa75ea1294d64f3da9731cb7a145f6fd127 (diff)
Merge branch 'fix-ci-builds-for-tags' into 'master'
Generate builds when creating tag using web interface Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/4296 See merge request !2366
Diffstat (limited to 'app')
-rw-r--r--app/services/create_tag_service.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/services/create_tag_service.rb b/app/services/create_tag_service.rb
index 2452999382a..55985380d31 100644
--- a/app/services/create_tag_service.rb
+++ b/app/services/create_tag_service.rb
@@ -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).