From 3eef6fc1b478f1bc1a731485477d69456014bce6 Mon Sep 17 00:00:00 2001 From: f Date: Thu, 16 Mar 2023 10:00:43 -0300 Subject: [PATCH] =?UTF-8?q?fixup!=20ci:=20probar=20conexi=C3=B3n=20a=20ssh?= =?UTF-8?q?=20antes=20de=20perder=20tiempo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .woodpecker.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.woodpecker.yml b/.woodpecker.yml index fc623527..1a83ee9c 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -31,7 +31,11 @@ pipeline: - "apk add python2 dotenv openssh-client" - "install -d -m 700 ~/.ssh/" - "echo \"$${KNOW_HOSTS}\" | base64 -d >> ~/.ssh/known_hosts" + - "echo \"$${KNOW_HOSTS}\"" + - "echo \"$${KNOW_HOSTS}\" | base64 -d" - "chmod 600 ~/.ssh/known_hosts" + - "cat ~/.ssh/known_hosts" + - "ls -hal ~/.ssh" - "echo \"$${ORIGIN}\" | cut -d @ -f 2 | cut -d : -f 1 | xargs ssh-keygen -F" - "eval $(ssh-agent -s)" - "echo \"$${SSH_KEY}\" | base64 -d | ssh-add -"