Commit 66ae7560 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'patch-28' into 'master'

Update test-and-deploy-ruby-application-to-heroku.md

See merge request gitlab-org/gitlab-ce!16500
parents 9d45c491 4367c509
......@@ -10,6 +10,7 @@ This is what the `.gitlab-ci.yml` file looks like for this project:
```yaml
test:
stage: test
script:
- apt-get update -qy
- apt-get install -y nodejs
......@@ -18,7 +19,7 @@ test:
- bundle exec rake test
staging:
type: deploy
stage: deploy
script:
- gem install dpl
- dpl --provider=heroku --app=gitlab-ci-ruby-test-staging --api-key=$HEROKU_STAGING_API_KEY
......@@ -26,7 +27,7 @@ staging:
- master
production:
type: deploy
stage: deploy
script:
- gem install dpl
- dpl --provider=heroku --app=gitlab-ci-ruby-test-prod --api-key=$HEROKU_PRODUCTION_API_KEY
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment