blog-static/.drone.yml

31 lines
818 B
YAML
Raw Normal View History

2020-02-11 14:25:44 -08:00
kind: pipeline
type: docker
name: default
steps:
# - name: test-compiler
# image: archlinux
# commands:
# - pacman -Sy cmake gcc make llvm bison flex gettext --noconfirm
# - cd code/compiler
# - ./test.sh
- name: build-live
image: klakegg/hugo:ext-alpine
commands:
- hugo -v -D --baseUrl "http://danilafe.com:8080" --destination /drone/src/build
- pwd
- ls -la .
- name: upload-live
image: eeacms/rsync
commands:
2020-02-29 21:52:01 -08:00
- eval `ssh-agent -s`
- echo "$CUSTOM_KEY" | ssh-add -
- mkdir -p ~/.ssh
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- ls -la .
- ls -la build
- rsync -rv -e "ssh -p 22" /drone/src/build/ blog-live@danilafe.com:/var/www/blog-live/ --checksum
environment:
CUSTOM_KEY:
from_secret: live_ssh_key