Skip to content

Instantly share code, notes, and snippets.

@dustinfarris
Last active February 14, 2017 19:48
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dustinfarris/ffa23e226fc7232b9ec2 to your computer and use it in GitHub Desktop.
Save dustinfarris/ffa23e226fc7232b9ec2 to your computer and use it in GitHub Desktop.
CircleCI script for Ember-CLI projects
machine:
node:
version: 0.10.28
dependencies:
pre:
- npm install -g bower
override:
- npm i
- bower i
deployment:
production:
branch: master
commands:
- EMBER_ENV=production npm run-script build
- rsync -qaz --delete -e ssh dist/ web@162.201.123.321:/var/www/myproject
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment