clone repo
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
e54b7d1f60
commit
23400b5432
23
.drone.yml
23
.drone.yml
|
@ -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)
|
||||||
|
- echo SSH_KEY > id_rsa
|
||||||
|
- chmod 600 id_rsa
|
||||||
|
- ssh-add -s id_rsa
|
||||||
|
- mkdir -p ~/.ssh
|
||||||
|
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
|
||||||
|
- ssh USERNAME@HOST "git clone $REPO"
|
||||||
|
|
Loading…
Reference in New Issue