Everything as it should be added and in account > security > add SSH keys and in authorized_keys
ssh -T git@bitbucket.org
logged in as webdevep_ru
You can use git or hg to connect to Bitbucket. Shell access is disabled
However when I use pipelines
- ssh -o StrictHostKeyChecking=no -t $SSH_USER_DEV@$HOST_DEV -p $SSH_PORT_DEV "cd $PROJECT_PATH_DEV; sh build_dev.sh;"
I see an error
+ ssh -o StrictHostKeyChecking=no -t $SSH_USER_DEV@$HOST_DEV -p $SSH_PORT_DEV " sh build_dev.sh;"
Pseudo-terminal will not be allocated because stdin is not a terminal.
Warning: Permanently added '94.250.250.49' (ECDSA) to the list of known hosts.
Permission denied, please try again.
Permission denied, please try again.
Permission denied (publickey,password).
what am I doing wrong?