Skip to content

Instantly share code, notes, and snippets.

@hanford
Created November 15, 2017 07:42
Show Gist options
  • Save hanford/7d25a879cb806f1674a5cf9a95f7c67b to your computer and use it in GitHub Desktop.
Save hanford/7d25a879cb806f1674a5cf9a95f7c67b to your computer and use it in GitHub Desktop.
now-cli + circle.yml
machine:
node:
version: 9
dependencies:
pre:
- npm i -g now-cli
deployment:
feature:
branch: /^(?!master|next|ci|production$).*$/
commands:
- now -t ${NOW_TOKEN} --team eaze
development:
branch: [master,next,ci]
commands:
- now -t ${NOW_TOKEN} --team eaze
- now -t ${NOW_TOKEN} alias development-eaze
production:
branch: production
commands:
- now -t ${NOW_TOKEN} --team eaze
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment