Add ember-cli-deploy-github

Thanks to @lukemelia for the suggestion.
This commit is contained in:
Buck Doyle 2016-04-15 15:19:06 +02:00
parent 2dff78b0ea
commit 1aeb2f9016
3 changed files with 12 additions and 7 deletions

View File

@ -48,10 +48,4 @@ notifications:
# FIXME this needs refinement, obvs
after_success:
- "test $EMBER_VERSION == 'default' && test $TRAVIS_PULL_REQUEST && ember deploy prod --verbose >> deploy_output"
- git symbolic-ref HEAD | sed 's!refs\/heads\/!!'
- "cat deploy_output"
- "cat deploy_output | grep 'revision=' | cut -d '=' -f 2 >> index_key"
- "cat index_key"
- "echo \"Access the deployment at https://travis-web-production-next.herokuapp.com/?index_key=`cat index_key`\""
- "curl -X POST --data \"{\\\"state\\\": \\\"success\\\", \\\"target_url\\\": \\\"https://travis-web-production-next.herokuapp.com/?index_key=`cat index_key`\\\", \\\"description\\\": \\\"Visit a deployment for this commit\\\", \\\"context\\\": \\\"deployment\\\"}\" -H \"Authorization: token $GITHUB_TOKEN\" https://api.github.com/repos/travis-ci/travis-web/statuses/$TRAVIS_COMMIT"
- "test $EMBER_VERSION == 'default' && test $TRAVIS_PULL_REQUEST && ember deploy prod --verbose"

View File

@ -38,6 +38,16 @@ module.exports = function(deployTarget) {
if (deployTarget === 'prod') {
ENV.redis.url = process.env.REDIS_URL;
ENV.github = {
token: process.env.GITHUB_TOKEN,
userOrOrganization: 'travis-ci',
repo: 'travis-web',
publicURL: 'https://travis-web-production-next.herokuapp.com/?index_key={{versionSha}}',
// FIXME is there an environment variable for this?
commitUser: 'backspace',
commitSha: process.env.TRAVIS_COMMIT
};
}
return ENV;

View File

@ -29,6 +29,7 @@
"ember-cli-babel": "^5.1.6",
"ember-cli-dependency-checker": "^1.2.0",
"ember-cli-deploy": "0.6.0",
"ember-cli-deploy-github": "0.3.0",
"ember-cli-deploy-lightning-pack": "0.6.1",
"ember-cli-deprecation-workflow": "0.1.6",
"ember-cli-document-title": "0.2.0",