56 lines
1.0 KiB
YAML
56 lines
1.0 KiB
YAML
kind: pipeline
|
|
type: docker
|
|
name: deploy
|
|
|
|
steps:
|
|
- name: submodules
|
|
image: archlinux
|
|
commands:
|
|
- pacman -Sy --noconfirm git >/dev/null
|
|
- git submodule update --init --recursive
|
|
|
|
- name: build
|
|
image: archlinux
|
|
environment:
|
|
PYTHON_ENV: python python-pipenv python-setuptools
|
|
when:
|
|
branch:
|
|
- drone
|
|
|
|
commands:
|
|
# set up python
|
|
- pacman -Sy --noconfirm make $PYTHON_ENV > /dev/null
|
|
- pipenv install
|
|
|
|
# build site
|
|
- make all
|
|
|
|
- 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 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
|
|
|
|
# run operations on remote host
|
|
|