perf: update default rsync options

BREAKING CHANGE: Default rsync options updated to speed up default deployments.
from `rltgoDzvO` to `-rlgoDzvc -i`
This commit is contained in:
Dragan Filipovic 2023-01-03 09:21:19 +01:00
parent e6e41a57ec
commit 2be7efb376
5 changed files with 7 additions and 7 deletions

View file

@ -13,7 +13,7 @@ const defaultInputs = {
source: './',
target: `/home/${remoteUser}/`,
exclude: '',
args: '-rltgoDzvO',
args: '-rlgoDzvc -i',
sshCmdArgs: '-o StrictHostKeyChecking=no',
deployKeyName: `deploy_key_${remoteUser}_${Date.now()}`
};