Last active
February 14, 2017 19:48
-
-
Save dustinfarris/ffa23e226fc7232b9ec2 to your computer and use it in GitHub Desktop.
CircleCI script for Ember-CLI projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ [email protected]:/var/www/myproject |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment