[CI/CD] add ssh preparation

This commit is contained in:
Vri 🌈 2023-03-29 21:03:05 +02:00
parent 819404a44c
commit 517b52134f
Signed by: vrifox
GPG key ID: D40098E5B60B2197

View file

@ -5,14 +5,19 @@ pipeline:
- pacman -Syu hugo - pacman -Syu hugo
- hugo --destination /woodpecker/build/vrifox.cc/ --minify --cleanDestinationDir - 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: upload:
image: archlinux image: archlinux
commands: commands:
- pacman -Syu openssh rsync - pacman -Syu openssh rsync
- mkdir -p ~/.ssh
- echo "$SSH-KEY" > ~/.ssh/id_25519
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- rsync -rv -e "ssh -p $SSH-PORT -i ~/.ssh/id_ed25519" /woodpecker/build/ woodpecker@$SSH-HOST:/home/woodpecker/build/vrifox.cc/ --checksum - rsync -rv -e "ssh -p $SSH-PORT -i ~/.ssh/id_ed25519" /woodpecker/build/ woodpecker@$SSH-HOST:/home/woodpecker/build/vrifox.cc/ --checksum
secrets: [ ssh-key, ssh-port, ssh-host ] secrets: [ ssh-port, ssh-host ]
branches: main branches: main