mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-06 16:25:52 +08:00
fix(ci): Publish builds on release branches
This commit is contained in:
parent
f0e4b2405f
commit
7ea0202cc7
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue