From 0fa8b8b3157d17e304f83c7a3e33655e85a8d1e7 Mon Sep 17 00:00:00 2001 From: ktyl Date: Mon, 26 Sep 2022 20:46:31 +0100 Subject: [PATCH] clone repo --- .drone.yml | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index fae9656..9197cfa 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,7 +3,26 @@ type: docker name: hello steps: -- name: greeting +- name: deploy image: ubuntu + environment: + HOST: + from_secret: host + USERNAME: + from_secret: username + SSH_KEY: + from_secret: ssh_key + REPO: https://git.pizzawednesday.club/ktyl/period3.xyz + commands: - - apt update && apt-get -y install ssh + - apt-get update -qq > /dev/null + - apt-get install ssh -qq > /dev/null + # a comment hopefully + - which ssh-agent + - eval $(ssh-agent -s) + - echo SSH_KEY > id_rsa + - chmod 600 id_rsa + - ssh-add id_rsa + - mkdir -p ~/.ssh + - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config' + - ssh USERNAME@HOST "git clone $REPO"