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