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