resume/.drone.yml
Danila Fedorin d2e5369b7b
All checks were successful
continuous-integration/drone/push Build is passing
Switch to using file:// for Chrome render.
I don't think the web server is started in this mode
2020-03-28 23:05:45 -07:00

31 lines
877 B
YAML

kind: pipeline
type: docker
name: default
volumes:
- name: resume-output
temp: {}
steps:
- name: build-resume
image: pink33n/html-to-pdf
commands:
- chrome-headless-render-pdf --chrome-binary=/usr/local/bin/chrome-wrapper --url file://$(pwd)/resume.html --pdf /resume-output/Resume-Danila-Fedorin.pdf
volumes:
- name: resume-output
path: /resume-output
- name: upload-resume
image: eeacms/rsync
commands:
- eval `ssh-agent -s`
- echo "$CUSTOM_KEY" | ssh-add -
- mkdir -p ~/.ssh
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- rsync -rv -e "ssh -p 22" /resume-output/Resume-Danila-Fedorin.pdf resume-drafter@danilafe.com:/home/resume-drafter/ --checksum
environment:
CUSTOM_KEY:
from_secret: resume_ssh_key
volumes:
- name: resume-output
path: /resume-output