diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fa85ed975514029cd48ea30444033e3554ec1f73..6ecd8ab795c00a5d9bfcd502191c3a25fc9bf1fa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,3 +24,14 @@ shellcheck: script: - which shellcheck || apt-get update && apt-get install -y shellcheck - shellcheck *.sh + +deploy to production: + environment: production + stage: deploy + image: ruby:latest + script: + - gem install dpl + #- dpl --provider=s3 --bucket=$S3_BUCKET_NAME + only: + - master + when: manual