samsapti.dev/.drone.yml
Sam A. 7b3ff71bfa
All checks were successful
continuous-integration/drone/push Build is passing
CI: Change path on remote server
2023-04-21 00:25:16 +02:00

33 lines
818 B
YAML

kind: pipeline
type: docker
name: Build and Deploy
steps:
- name: build
image: klakegg/hugo:ext-alpine-ci
environment:
HUGO_SECURITY_HTTP_URLS: none
commands:
- apk add --no-cache git py3-pygments
- git submodule update --init --single-branch --depth=1
- hugo
- name: deploy
image: alpine:latest
environment:
SSH_KEY:
from_secret: ssh_key
commands:
- apk add --no-cache openssh-client rsync
- mkdir ~/.ssh
- echo "$${SSH_KEY}" > ~/.ssh/id_ed25519
- chmod 600 ~/.ssh/id_ed25519
- ssh-keyscan -H cpx.servers.sapti.me > ~/.ssh/known_hosts
- rsync -acvx --delete ./public cicd@cpx.servers.sapti.me:/opt/docker/samsapti.dev/
when:
branch:
- main
event:
exclude:
- pull_request