blog/.woodpecker.yml

10 lines
432 B
YAML

steps:
update:
image: machines/ssh
commands:
- mkdir -p ~/.ssh
- echo "$PRIVKEY" > ~/.ssh/id_ed25519
- chmod 700 ~/.ssh && chmod 600 ~/.ssh/id_ed25519
- ssh websiteupdate@172.17.0.1 -i ~/.ssh/id_ed25519 "cd /websiteupdate/blog && git reset --hard origin/master && git config pull.rebase true && git pull && nix-shell -p gnumake -p pandoc -p libxslt -p htmlq --run make"
secrets: [ privkey ]