diff --git a/build/tasks/task-helpers.coffee b/build/tasks/task-helpers.coffee index 1f2ded47b..4f9541484 100644 --- a/build/tasks/task-helpers.coffee +++ b/build/tasks/task-helpers.coffee @@ -106,10 +106,9 @@ module.exports = (grunt) -> return false branch = process.env.TRAVIS_BRANCH - if branch is "master" or branch is "ci-test" + if branch is "master" or branch is "ci-test" or branch[0..7] is "release/" return true else grunt.log.writeln("Skipping. We don't operate on branch '#{branch}''") return false return true -