kind: pipeline type: docker name: deploy steps: - name: submodules image: archlinux commands: - pacman -Sy --noconfirm git >/dev/null - git submodule update --init --recursive - name: deploy image: archlinux environment: HOST: from_secret: host USER: from_secret: user SSH_KEY: from_secret: ssh_key when: branch: - drone commands: # install deps - pacman -Sy --noconfirm > /dev/null - pacman -S --noconfirm python python-pip > /dev/null - pacman -S --noconfirm make git openssh rsync > /dev/null # configure ssh - 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 # build site - make all # run operations on remote host