summaryrefslogtreecommitdiff
path: root/app/workers/build_success_worker.rb
blob: ec049821ad7ae3a3f2930acf75ffa6f49297d2d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class BuildSuccessWorker
  include ApplicationWorker
  include PipelineQueue

  enqueue_in group: :processing

  def perform(build_id)
    Ci::Build.find_by(id: build_id).try do |build|
      create_deployment(build) if build.has_environment?
    end
  end

  private

  def create_deployment(build)
    CreateDeploymentService.new(build).execute
  end
end