Adding port and cat
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Louis 2025-04-08 16:59:19 +02:00
parent 5a97c315de
commit 7e462ede4b

View file

@ -17,8 +17,9 @@ steps:
- chmod 700 ~/.ssh
# Create the SSH key file
- echo "$SSH_KEY" > ~/.ssh/id_ed25519
- cat ~/.ssh/id_ed25519
- chmod 600 ~/.ssh/id_ed25519
- ssh-keyscan -t ed25519 git.polarolouis.fr >> ~/.ssh/known_hosts
- ssh-keyscan -t ed25519 git.polarolouis.fr -p 2220 >> ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
# Set the GIT_SSH_COMMAND to use the SSH key
- export GIT_SSH_COMMAND="ssh -i ~/.ssh/id_ed25519 -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"