blog/.woodpecker.yaml
Sergio Durigan Junior 39d8a66fc3
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
Initial .woodpecker.yaml
Signed-off-by: Sergio Durigan Junior <sergiodj@sergiodj.net>
2024-02-22 23:24:23 -05:00

16 lines
533 B
YAML

steps:
- name: build
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
- find .
# - /usr/bin/rsync --verbose --compress --archive --recursive \
# --progress --checksum --delete \
# --rsh="/usr/bin/ssh \
# -p $${SSH_PORT} -o StrictHostKeyChecking=no" \
# public/ blog@sergiodj.net:.