First attempt at auto-building resume
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danila Fedorin 2020-03-28 22:59:06 -07:00
parent dc398b02b2
commit 0347edf338
1 changed files with 31 additions and 0 deletions

31
.drone.yml Normal file
View File

@ -0,0 +1,31 @@
kind: pipeline
type: docker
name: default
volumes:
- name: resume-output
temp: {}
steps:
- name: build-resume
image: pink33n/html-to-pdf
commands:
- cp -r resume.html css /workspace
- chrome-headless-render-pdf --chrome-binary=/usr/local/bin/chrome-wrapper --url http://localhost/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