Update .gitlab-ci.yml file

This commit is contained in:
2021-04-24 17:19:06 +00:00
parent 07c05f261d
commit 33bcf7195c

15
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,15 @@
before_script:
- apt-get update -qy
- apt-get install -y ruby
- gem install dpl
stages:
- deploy
deploy:
stage: deploy
image: ruby:latest
script:
- dpl --provider=heroku --app=$HEROKU_APP_PRODUCTION --api-key=$HEROKU_API_KEY
only:
- master