[CI/CD] replace ssh-agent
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Vri 🌈 2023-03-29 20:46:52 +02:00
parent c517190b85
commit bb2bbb3faa
Signed by: vrifox
GPG key ID: D40098E5B60B2197

View file

@ -8,12 +8,10 @@ pipeline:
upload: upload:
image: archlinux image: archlinux
commands: commands:
- pacman -Syu openssh
- eval `ssh-agent -s`
- echo "$SSH-KEY" | ssh-add -
- mkdir -p ~/.ssh - mkdir -p ~/.ssh
- echo "$SSH-KEY" > .ssh/id_25519
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- rsync -rv -e "ssh -p $SSH-PORT" /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, ssh-dir ] secrets: [ ssh-key, ssh-port, ssh-host, ssh-dir ]
branches: main branches: main