From f16f97eaea399b1f87e962a3aa6e89759a24f25e Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Fri, 11 Dec 2015 15:11:03 -0800 Subject: [PATCH] fix(ci): Publish appveyor release branch builds --- build/tasks/task-helpers.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tasks/task-helpers.coffee b/build/tasks/task-helpers.coffee index 4f9541484..609ff8820 100644 --- a/build/tasks/task-helpers.coffee +++ b/build/tasks/task-helpers.coffee @@ -94,7 +94,7 @@ module.exports = (grunt) -> return false branch = process.env.APPVEYOR_REPO_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}''")