github action unable to authenticate

problem깃허브 액션으로 ec2로 jar 를 복사 하는 과정에서 에러를 만났다.handshake failed: ssh: unable to authenticate, attempted methods [none publickey], no supported methods remainsolution아래 항목을 꼼꼼히 체크 해보자1. github -> Repository secrets 들 을 꼼꼼히 확인해준다sudo vi /etc/ssh/sshd_config# 아래 설정 활성화PubkeyAuthentication yes# 나온 후 sudo systemctl restart sshd 2. 공개키 서버( ec2 )에 추가cat ~/.ssh/github.pub >> ~/.ssh/authorized_keyschmod 6..