blob: 29efba7958e4afc5919955dbece51e78a9152064 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
stages: # List of stages for jobs, and their order of execution
- production
production:
stage: production
image: ruby:latest
script:
- gem install faraday -v 1.8.0
- dpl --provider=heroku --app=$HEROKU_APP --api-key=$HEROKU_API_KEY
only:
- master
|