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 96e87b6fe2
1 changed files with 21 additions and 2 deletions

View File

@ -3,7 +3,26 @@ type: docker
name: hello name: hello
steps: steps:
- name: greeting - name: deploy
image: ubuntu 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: 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)
- mkdir -p ~/.ssh
- echo "$SSH_KEY" > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- ssh-add
- 'echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
- ssh "${USERNAME}@${HOST}" "git clone ${REPO}"