period3.xyz/.drone.yml
ktyl 52e532ccfa
Some checks failed
continuous-integration/drone/push Build is failing
clone repo
2022-09-26 21:12:31 +01:00

27 lines
609 B
YAML

kind: pipeline
type: docker
name: hello
steps:
- 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-get update -qq > /dev/null
- apt-get install ssh -qq > /dev/null
# a comment hopefully
- which ssh-agent
- eval $(ssh-agent -s)
- ssh-add <(echo SSH_KEY)
- mkdir -p ~/.ssh
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
- ssh USERNAME@HOST "git clone $REPO"