エラー
ERROR: Repository not found.
DEBUG [d98d0ce0] fatal: Could not read from remote repository.
DEBUG [d98d0ce0]
DEBUG [d98d0ce0] Please make sure you have the correct access rights
DEBUG [d98d0ce0] and the repository exists.
原因
リモートサーバーのsshキーを持ったリードエンジニアがgithubから抜けた
解決法
SSH Agent Forwarding(参考)
デプロイ先にSSHを設定する
デプロイ先にSSHを設定する
デプロイ用にssh-keygen
->
eval 'ssh-agent bash'
ssh-add
または
.ssh/config
Host github
HostName github.com
IdentityFile ~/.ssh/id_for_git
User git
それでもエラー
Hostの方に.comを入れていなかったためエラーが発生したよう
.ssh/config
Host github.com
HostName github.com
IdentityFile ~/.ssh/id_for_git
User git
参考