0

I'm setting up an automated deployment using CapRover, but it seems not working due to my SSH key.

How could I generate a key accepted by CapRover and Github?

CapRover Deployments

Rafael Corrêa Gomes
  • 1,751
  • 1
  • 22
  • 31

1 Answers1

0

Make sure to use PEM format, as other formats may not work.

You can make it work by generating a deploy key using the command below.

ssh-keygen -m PEM -t ed25519 -C "yourname@example.com" -f ./deploykey -q -N ""
Rafael Corrêa Gomes
  • 1,751
  • 1
  • 22
  • 31