From cecec8d97bb97c7b6c65ce57195d1612da9b9740 Mon Sep 17 00:00:00 2001 From: david Date: Sun, 27 Oct 2019 19:16:12 +0100 Subject: [PATCH] updated ci file --- .gitlab-ci.yml | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1f2004d..ac690f2 100755 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,34 +1,16 @@ stages: - - test - - build - deploy -test: - stage: test - tags: - - jekyll - script: - - jekyll build -d test - except: - - master - -build: - stage: deploy - tags: - - jekyll - script: - - jekyll build -d public - only: - - master - - deploy: stage: deploy tags: - jekyll script: + - apt-get update + - apt-get install -y ruby-full build-essential zlib1g-dev rsync + - gem install bundler jekyll - jekyll build -d public - - rsync -rvI --delete public/ /home/user-data/www/socialnerds.org/ + - rsync -rvI --delete public/ /srv/socialnerds.org/ environment: name: production url: https://socialnerds.org