ktyl.dev/.drone.yml

68 lines
1.4 KiB
YAML
Raw Normal View History

2022-09-27 09:32:11 +02:00
kind: pipeline
type: docker
name: deploy
steps:
- name: submodules
2022-09-27 22:28:59 +02:00
image: archlinux
2022-09-27 09:32:11 +02:00
commands:
2022-09-27 22:28:59 +02:00
- pacman -Sy --noconfirm git >/dev/null
2022-09-27 09:32:11 +02:00
- git submodule update --init --recursive
2022-09-27 23:13:58 +02:00
- name: build
image: archlinux
environment:
PYTHON_ENV: python python-pipenv python-setuptools
commands:
# set up python
- pacman -Sy --noconfirm make $PYTHON_ENV > /dev/null
- pipenv install
# build site
- make all
2022-09-27 09:32:11 +02:00
- name: deploy
2022-09-27 23:40:49 +02:00
image: ubuntu
2022-09-27 09:32:11 +02:00
environment:
HOST:
from_secret: host
USER:
from_secret: user
SSH_KEY:
from_secret: ssh_key
2022-09-27 23:52:04 +02:00
2022-09-27 09:32:11 +02:00
when:
branch:
- drone
commands:
2022-09-27 23:08:23 +02:00
# install deps
2022-09-27 23:40:49 +02:00
- apt-get update -qq > /dev/null
- apt-get install ssh rsync -qq > /dev/null
2022-09-27 09:32:11 +02:00
# 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
2022-09-28 01:23:45 +02:00
# copy old site
2022-09-27 23:52:04 +02:00
- host_dir="/var/www/$${HOST}"
- backup_dir="~/backups/$${HOST}/$${HOST}-$${DRONE_STAGE_STARTED}"
- make_backup_dir="mkdir -p $backup_dir"
- copy_files="rsync -rP $host_dir/* $backup_dir"
- host="$${USER}@$${HOST}"
- ssh $host $make_backup_dir
- ssh $host $copy_files
2022-09-28 01:23:45 +02:00
- rsync -rP site "$host:$${HOST}-new"
2022-09-27 23:52:04 +02:00
2022-09-27 23:24:16 +02:00
#- ssh
#- ssh "$${USER}@$${HOST}" "[[ ! -d ~/gemini/content ]] || rm -r ~/gemini/content"
#- rsync -rP content "$${USER}@$${HOST}:gemini"
2022-09-27 09:32:11 +02:00