period3.xyz/.drone.yml
ktyl 0e784c21e7
All checks were successful
continuous-integration/drone/push Build is passing
add drone ci config
2022-09-26 22:39:39 +01:00

36 lines
927 B
YAML

kind: pipeline
type: docker
name: deploy
steps:
- name: deploy
image: ubuntu
environment:
HOST:
from_secret: host
USER:
from_secret: user
SSH_KEY:
from_secret: ssh_key
SRC: content
commands:
# install stuff
- apt-get update -qq > /dev/null
- apt-get install ssh rsync -qq > /dev/null
# configure ssh identity by importing ssh key from secrets and adding it to
# ssh-agent. also disable strict host key checking as this is the first time
# the ephemeral runner is connecting to the remote host
- which ssh-agent
- eval $(ssh-agent -s)
- mkdir -p ~/.ssh
- echo "$SSH_KEY" > ~/.ssh/id_rsa
- chmod 600 ~/.ssh/id_rsa
- ssh-add
- echo "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
# run operations on the remote host
- ssh "$${USER}@$${HOST}" "[[ ! -d ~/gemini/content ]] || rm -r ~/gemini/content"
- rsync -rP content "$${USER}@$${HOST}:gemini"