Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- image: node:latest
- before_script:
- - apt-get update -qy
- - apt-get install -y ruby-dev
- - gem install dpl
- stages:
- - staging
- - production
- staging:
- type: deploy
- stage: staging
- image: ruby:latest
- script:
- - dpl --provider=heroku --app=$HEROKU_APP_STAGING --api-key=$HEROKU_API_KEY
- only:
- - staging
- production:
- type: deploy
- stage: production
- image: ruby:latest
- script:
- - dpl --provider=heroku --app=$HEROKU_APP_PRODUCTION --api-key=$HEROKU_API_KEY
- only:
- - master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement