mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-27 02:19:46 +08:00
fix(ci): stable
instead of release/*
branches
This commit is contained in:
parent
0f67438c9f
commit
8ea8df8efc
3 changed files with 4 additions and 2 deletions
|
@ -20,6 +20,7 @@ branches:
|
|||
only:
|
||||
- master
|
||||
- ci-test
|
||||
- stable
|
||||
|
||||
matrix:
|
||||
include:
|
||||
|
|
|
@ -10,6 +10,7 @@ branches:
|
|||
only:
|
||||
- master
|
||||
- ci-test
|
||||
- stable
|
||||
|
||||
test: off
|
||||
|
||||
|
|
|
@ -94,7 +94,7 @@ module.exports = (grunt) ->
|
|||
return false
|
||||
|
||||
branch = process.env.APPVEYOR_REPO_BRANCH
|
||||
if branch is "master" or branch is "ci-test" or branch[0..7] is "release/"
|
||||
if branch is "master" or branch is "ci-test" or branch is "stable"
|
||||
return true
|
||||
else
|
||||
grunt.log.writeln("Skipping. We don't operate on branch '#{branch}''")
|
||||
|
@ -106,7 +106,7 @@ module.exports = (grunt) ->
|
|||
return false
|
||||
|
||||
branch = process.env.TRAVIS_BRANCH
|
||||
if branch is "master" or branch is "ci-test" or branch[0..7] is "release/"
|
||||
if branch is "master" or branch is "ci-test" or branch is "stable"
|
||||
return true
|
||||
else
|
||||
grunt.log.writeln("Skipping. We don't operate on branch '#{branch}''")
|
||||
|
|
Loading…
Reference in a new issue