From 0347edf338fb7b16f01982f48a92459d4950b55b Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Sat, 28 Mar 2020 22:59:06 -0700 Subject: [PATCH] First attempt at auto-building resume --- .drone.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..0b10a57 --- /dev/null +++ b/.drone.yml @@ -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