From 1aeb2f901683e4abb151ea59a95a69e7c2c9be2c Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Fri, 15 Apr 2016 15:19:06 +0200 Subject: [PATCH] Add ember-cli-deploy-github Thanks to @lukemelia for the suggestion. --- .travis.yml | 8 +------- config/deploy.js | 10 ++++++++++ package.json | 1 + 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index e992dda3..739e53ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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" diff --git a/config/deploy.js b/config/deploy.js index 6e608fe4..7480b372 100644 --- a/config/deploy.js +++ b/config/deploy.js @@ -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; diff --git a/package.json b/package.json index 28dc71b9..dba0899d 100644 --- a/package.json +++ b/package.json @@ -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",