diff options
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r-- | app/models/commit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb index 2e1bd52..32bd334 100644 --- a/app/models/commit.rb +++ b/app/models/commit.rb @@ -137,7 +137,7 @@ class Commit < ActiveRecord::Base end def create_deploy_builds(ref) - if success? && !last_build.job.deploy? + if builds.empty? || (success? && !last_build.job.deploy?) project.jobs.deploy.active.each do |job| if job.run_for_ref?(ref) create_build_from_job(job) |