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
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-01-11 14:34:58 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-01-11 14:37:27 +0300
commit31b66aa75ea1294d64f3da9731cb7a145f6fd127 (patch)
tree7ede77ccfaf8b17037ec49efbeffeb86b554a80c /app/services
parent5270cc69582bff42e8effe2e882592805c764e4b (diff)
Generate builds when creating tag using web interface
Diffstat (limited to 'app/services')
-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).