Execute GitLab CI on tag push

This commit is contained in:
Dmitriy Zaporozhets 2015-01-10 22:18:14 -08:00
parent f891ababeb
commit 2543af84f0
1 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,12 @@ class GitTagPushService
create_push_event
project.repository.expire_cache
project.execute_hooks(@push_data.dup, :tag_push_hooks)
if project.gitlab_ci?
project.gitlab_ci_service.async_execute(@push_data)
end
true
end
private