Hello there,
today i started to use circleci for the first time!
I tried to create a deploying environment for my laravel app to my webspace.
On my webspace i created a ssh key and inserted it into " Additional SSH Keys". Everything works to the point where circleci tries to log into my server.
Instead of using the fingerprint it stops and asks for the password. What am i missing?
deploy:
machine:
enabled: true
steps:
- add_ssh_keys:
fingerprints:
- “xxxx”
- checkout
- run:
name: Setup
command: |
chmod 755 .circleci/deploy.sh
ssh-keyscan myserverip >> ~/.ssh/known_hosts
- run:
name: Deploy
command: ./.circleci/deploy.sh