website/.woodpecker.yml
vrifox d5a03aef44
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
[CI/CD] try to create the file before writing into it
2023-03-29 22:19:04 +02:00

19 lines
No EOL
670 B
YAML

pipeline:
build:
image: archlinux
commands:
- pacman -Syu --noconfirm hugo git
- hugo --destination /woodpecker/build/vrifox.cc/ --minify --cleanDestinationDir
upload:
image: archlinux
commands:
- pacman -Syu --noconfirm openssh rsync
- mkdir -p /root/.ssh
- touch /root/.ssh/id_25519
- echo "$SSH_KEY" > /root/.ssh/id_25519
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > /root/.ssh/config
- rsync -rv -e "ssh -p $SSH_PORT -i /root/.ssh/id_ed25519" /woodpecker/build/ woodpecker@$SSH_HOST:/home/woodpecker/build/vrifox.cc/ --checksum
secrets: [ ssh_key, ssh_port, ssh_host ]
branches: main