From fbcd5c55987e70783abae6e29f732c4ec5a512a6 Mon Sep 17 00:00:00 2001 From: Rastislav Kubala <rastislav.kubala@vsb.cz> Date: Thu, 19 Mar 2020 14:06:06 +0100 Subject: [PATCH] Fix of the "rsync path" in "deploy to production on docs_devel" block --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 074458229..2969e0eb6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -166,7 +166,7 @@ deploy to production on docs_devel: - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config script: - chown nginx:nginx site -R - - rsync -a --delete site/ root@"$SSH_HOST_STAGE_DEV":/srv/docs.it4i.cz/site/ + - rsync -a --delete site/ root@"$SSH_HOST_STAGE_DEV":/srv/docs-devel.it4i.cz/site/ only: - master@sccs/docs.it4i.cz when: manual -- GitLab