generalise
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
225e597060
commit
978cfac12e
|
@ -12,20 +12,23 @@ steps:
|
||||||
from_secret: user
|
from_secret: user
|
||||||
SSH_KEY:
|
SSH_KEY:
|
||||||
from_secret: ssh_key
|
from_secret: ssh_key
|
||||||
|
SRC: content
|
||||||
DEST: gemini/content
|
DEST: gemini/content
|
||||||
|
|
||||||
commands:
|
commands:
|
||||||
|
# install stuff
|
||||||
- apt-get update -qq > /dev/null
|
- apt-get update -qq > /dev/null
|
||||||
- apt-get install ssh rsync -qq > /dev/null
|
- apt-get install ssh rsync -qq > /dev/null
|
||||||
# a comment hopefully
|
# configure ssh identity
|
||||||
- which ssh-agent
|
- which ssh-agent
|
||||||
- eval $(ssh-agent -s)
|
- eval $(ssh-agent -s)
|
||||||
- mkdir -p ~/.ssh
|
- mkdir -p ~/.ssh
|
||||||
|
# import ssh key
|
||||||
- echo "$SSH_KEY" > ~/.ssh/id_rsa
|
- echo "$SSH_KEY" > ~/.ssh/id_rsa
|
||||||
- chmod 600 ~/.ssh/id_rsa
|
- chmod 600 ~/.ssh/id_rsa
|
||||||
- ssh-add
|
- ssh-add
|
||||||
# skip key checking
|
# skip key checking as this runner has never seen the host before
|
||||||
- echo "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
- echo "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
||||||
- cat ~/.ssh/config
|
# run operations on the remote host
|
||||||
- ssh "$${USER}@$${HOST}" "[[ -d $${DEST} ]] && rm -r $${DEST}"
|
- ssh "$${USER}@$${HOST}" "[[ -d $${DEST} ]] && rm -r $${DEST}"
|
||||||
- rsync -rP content/* "$${USER}@$${HOST}:$${DEST}"
|
- rsync -rP content/* "$${USER}@$${HOST}:$${DEST}"
|
||||||
|
|
Loading…
Reference in New Issue