Skip to content
Snippets Groups Projects
Commit 40d43340 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

update ssh key

parent ab682f41
No related branches found
No related tags found
No related merge requests found
Pipeline #14065 passed
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment