Created
May 6, 2015 07:55
-
-
Save hatchan/3b2cd25fe1951bd2eef5 to your computer and use it in GitHub Desktop.
Minimal wercker.yml for Heroku deploy
This file contains hidden or 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
box: ubuntu | |
build: | |
steps: | |
- script: | |
name: build | |
code: echo build | |
deploy: | |
steps: | |
- script: | |
name: install git | |
code: sudo apt-get install curl git -y | |
- heroku-deploy: | |
key: $HEROKU_API_KEY | |
app-name: $HEROKU_APP_NAME | |
user: $HEROKU_DEPLOY_USER |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment