From 40d43340513ef80cf4a2d4f4ea2bf96acdfe7cf4 Mon Sep 17 00:00:00 2001 From: bclayton-usgs <bclayton@usgs.gov> Date: Fri, 22 May 2020 08:24:06 -0600 Subject: [PATCH] update ssh key --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3afb208fc..5c0fd36e2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,6 +32,8 @@ stages: eval $(ssh-agent -s); mkdir -p ~/.ssh; chmod 700 ~/.ssh; + echo "${SSH_PRIVATE_KEY}" >> ~/.ssh/id_ed25519; + chmod 0600 ~/.ssh/id_ed25519; echo "${SSH_PRIVATE_KEY}" >> ~/.ssh/id_rsa; chmod 0600 ~/.ssh/id_rsa; echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config; -- GitLab