From fb274364dc2c3bc7300f97ebf14fab3a60d81cd1 Mon Sep 17 00:00:00 2001 From: Ilya Rassadin Date: Thu, 28 Nov 2024 20:08:36 +0100 Subject: [PATCH] Added more debug into deploy_code_to_server --- .deploy_code_to_server.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.deploy_code_to_server.yml b/.deploy_code_to_server.yml index 15c331f..6d9b0f8 100644 --- a/.deploy_code_to_server.yml +++ b/.deploy_code_to_server.yml @@ -31,7 +31,7 @@ - 'which curl || (apt-get update -y && apt-get install curl -y)' - curl -O https://gitlab.cetera.ru/boilerplate/ci/raw/master/rsync-filter-std - *set_rsync_filter - - echo PROJECT_FILTER set to $PROJECT_FILTER + - echo "PROJECT_FILTER set to $PROJECT_FILTER; user set to $user; group set to $group" - rsync --links --safe-links -avz --chown=$user:$group -e "ssh $SSH_OPTS" --filter="merge rsync-filter-std" --filter="merge $PROJECT_FILTER" $RSYNC_PARAMS $CI_PROJECT_DIR/ $DEPLOY_HOST_PATH/ after_script: - if [ $PROJECT_CMS_TYPE = bitrix ] && [ $SKIP_SETTINGS_EXTRA_DEPLOYMENT != true ]; then curl -o /tmp/.settings_extra.php https://gitlab.cetera.ru/boilerplate/ci/raw/master/.settings_extra.php; fi -- GitLab