cv/.drone.yml
kleph 8ff2c002b8
All checks were successful
continuous-integration/drone/push Build is passing
Update 2025
2025-01-15 17:51:45 +01:00

29 lines
729 B
YAML

---
kind: pipeline
name: latex
steps:
- name: markdown lint
image: pipelinecomponents/markdownlint:latest
commands:
- mdl --style all --warnings .
- name: build
image: niccokunzmann/ci-latex
commands:
- pdflatex -interaction=nonstopmode -halt-on-error cv.tex
- name: deploy
image: kroniak/ssh-client
environment:
DEPLOY_USER:
from_secret: deploy_user
DEPLOY_HOST:
from_secret: deploy_host
DEPLOY_KEY:
from_secret: deploy_key
commands:
- echo "deploy $DEPLOY_USER@$DEPLOY_HOST"
- echo "$DEPLOY_KEY" | sed 's/!/\n/g' > deploy_key
- chmod 0600 deploy_key
- scp -i deploy_key -o StrictHostKeyChecking=no cv.pdf $DEPLOY_USER@$DEPLOY_HOST:/srv/http/trucs/cv_laurenti_2025.pdf