Change name of deploy target

This commit is contained in:
Buck Doyle 2016-04-15 16:13:59 +02:00
parent 1aeb2f9016
commit 6b53f583fd
2 changed files with 4 additions and 4 deletions

View File

@ -48,4 +48,4 @@ notifications:
# FIXME this needs refinement, obvs
after_success:
- "test $EMBER_VERSION == 'default' && test $TRAVIS_PULL_REQUEST && ember deploy prod --verbose"
- "test $EMBER_VERSION == 'default' && test $TRAVIS_PULL_REQUEST && ember deploy pull-request --verbose"

View File

@ -1,7 +1,7 @@
var VALID_DEPLOY_TARGETS = [ //update these to match what you call your deployment targets
'dev',
'qa',
'prod'
'pull-request'
];
module.exports = function(deployTarget) {
@ -26,7 +26,7 @@ module.exports = function(deployTarget) {
ENV.plugins = ['build', 'redis']; // only care about deploying index.html into redis in dev
}
if (deployTarget === 'qa' || deployTarget === 'prod') {
if (deployTarget === 'qa' || deployTarget === 'pull-request') {
ENV.build.environment = 'production';
ENV.s3.accessKeyId = process.env.AWS_KEY;
ENV.s3.secretAccessKey = process.env.AWS_SECRET;
@ -36,7 +36,7 @@ module.exports = function(deployTarget) {
ENV.redis.url = process.env.QA_REDIS_URL;
}
if (deployTarget === 'prod') {
if (deployTarget === 'pull-request') {
ENV.redis.url = process.env.REDIS_URL;
ENV.github = {