From 2c52e9f3e8199d365c11b8e005f6e825cf90b803 Mon Sep 17 00:00:00 2001 From: f Date: Mon, 2 Mar 2020 12:38:51 -0300 Subject: [PATCH] ci/cd? --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ad51d6b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +image: ruby:2.6.5-alpine +stages: + - deploy + +bundle_install: + stage: deploy + script: + - bundle install --path=./vendor + +deploy_application: + stage: deploy + script: + - cap production deploy