clone repo
continuous-integration/drone/push Build is failing Details

This commit is contained in:
ktyl 2022-09-26 20:46:31 +01:00
parent e54b7d1f60
commit 0fa8b8b315
1 changed files with 21 additions and 2 deletions

View File

@ -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"