You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not really clear if I'm doing something wrong but I can't push to my remote because key does not exist.
I would expect that key is added to /home/runner/.ssh/id_rsa and then used from there, but that doesn't seam to be the case.
Any help appreciated, below is my output.
Adding keys:
Run webfactory/ssh-agent@v0.4.00s
4096 SHA256:Ogd8/KGgSFwKpL4mfmEZFBesrshP5P9SYSQzDBQMfHg (stdin) (RSA)
Run webfactory/ssh-agent@v0.4.0
with:
ssh-private-key: ***
Adding GitHub.com keys to /home/runner/.ssh/known_hosts
Starting ssh-agent
Adding private key to agent
Identity added: (stdin) ((stdin))
Keys added:
4096 SHA256:Ogd8/KGgSFwKpL4mfmEZFBesrshP5P9SYSQzDBQMfHg (stdin) (RSA)
debug1: Connection established.
debug1: key_load_public: No such file or directory
debug1: identity file /home/runner/.ssh/id_rsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/runner/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/runner/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/runner/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/runner/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/runner/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/runner/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/runner/.ssh/id_ed25519-cert type -1
The text was updated successfully, but these errors were encountered:
This action is about starting ssh-agent, a background process that keeps your keys in memory and provides them to the ssh command whenever necessary. Your key files will never be written to disk, which is the whole point of running this.
Oh, that explains it, thank you. I'm using tmate session now to debug.
I managed to figure out what's wrong but did not finish setting up everything yet, I forgot to add my server fingerprint to known_hosts, but that was not visible in output.
Not really clear if I'm doing something wrong but I can't push to my remote because key does not exist.
I would expect that key is added to
/home/runner/.ssh/id_rsa
and then used from there, but that doesn't seam to be the case.Any help appreciated, below is my output.
Adding keys:
Check if file exists in
~/.ssh/
, not there..Check if file exists in
/home/runner/.ssh/
, not there..Runing git push host:branch
The text was updated successfully, but these errors were encountered: