From bb2323f0be0d5877fe2afe98625ef412f9c83a26 Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Sun, 8 May 2022 14:12:37 +0000 Subject: feat: Add .gitlab-ci.yml file --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..29efba7 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,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 + -- cgit v1.2.3