Skip to content

Instantly share code, notes, and snippets.

@emilbayes
Last active April 21, 2023 01:00
Show Gist options
  • Save emilbayes/e76c17f09a678de18649 to your computer and use it in GitHub Desktop.
Save emilbayes/e76c17f09a678de18649 to your computer and use it in GitHub Desktop.
Continous Delivery with Travis CI
language: node_js
node_js:
- '0.11'
notifications:
email: false
deploy:
- provider: heroku
api_key:
secure: ...
app: some-app
on:
repo: myuser/myrepo
tags: true
all_branches: true
- provider: heroku
api_key:
secure: ...
app: some-app-staging
on:
repo: myuser/myrepo
branch: master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment