summaryrefslogtreecommitdiff
path: root/app/workers/build_success_worker.rb
blob: bf009dfab0f7371ccaf3d8d608f6a60bda54f01c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class BuildSuccessWorker
  include Sidekiq::Worker
  include BuildQueue

  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