blog/.woodpecker.yaml.bkp
Sergio Durigan Junior dd5aeae855
Some checks failed
/ deploy (push) Failing after 1m41s
Disable woodpecker CI
2024-09-08 17:39:05 -04:00

19 lines
613 B
Text

steps:
- name: build
when:
- branch: master
event: push
image: debian:testing-slim
secrets: [ ssh_key, ssh_port ]
commands:
- apt-get update
- apt-get install -y hugo rsync openssh-client
- mkdir ~/.ssh
- printf '%s\n' "$${SSH_KEY}" > ~/.ssh/id_rsa
- chmod 0700 ~/.ssh
- chmod 0600 ~/.ssh/id_rsa
- /usr/bin/hugo --verbose
- /usr/bin/rsync --verbose --compress --archive --recursive
--progress --checksum --delete
--rsh="/usr/bin/ssh -4 -p $${SSH_PORT} -o StrictHostKeyChecking=no"
public/ blog@sergiodj.net:.