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
cb75efc2ab
25
.drone.yml
25
.drone.yml
|
@ -3,7 +3,28 @@ 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)
|
||||
- mkdir -p ~/.ssh
|
||||
- echo "$SSH_KEY" > ~/.ssh/id_rsa
|
||||
- chmod 600 ~/.ssh/id_rsa
|
||||
- ssh-add
|
||||
# skip key checking
|
||||
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
||||
- cat ~/.ssh/config
|
||||
- ssh gemini@period3.xyz "git clone $REPO"
|
||||
|
|
Loading…
Reference in New Issue