Circle CI如何部署到ssh-错误无法建立真实性

时间:2020-04-12 12:41:27

标签: linux ssh terminal circleci

我想使用SSH将代码部署到服务器中。

我在ci设置中添加了ssh键。

在ci管道中我有代码...

scp -q -r /build root@XXXXXXXX:/root/test

问题是,我收到The authenticity of host 'XXXXXXXX (XXXXXXXX )' can't be established.条消息。如何跳过或确认?

scp -q -r /build root@XXXXXXXX:/root/test
The authenticity of host 'XXXXXXXX (XXXXXXXX )' can't be established.
ECDSA key fingerprint is SHA256:6+xxxx.
Are you sure you want to continue connecting (yes/no)? 

我如何响应循环CI管道作业中的提示?它正在某个服务器上的某个地方运行。

1 个答案:

答案 0 :(得分:1)

您正在寻找选项Struct。下面的代码应该执行此操作。 -o StrictHostKeyChecking=no