Skip to content

Commit

Permalink
docs(readme): update
Browse files Browse the repository at this point in the history
  • Loading branch information
appleboy committed Mar 3, 2023
1 parent 51b83ba commit e4a8810
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,41 +85,41 @@ Make sure to follow the below steps while creating SSH Keys and using them.
The best practice is create the SSH Keys on local machine not remote machine.
Login with username specified in Github Secrets. Generate a RSA Key-Pair:

rsa
### Generate rsa key

```bash
ssh-keygen -t rsa -b 4096 -C "[email protected]"
```

ed25519
### Generate ed25519 key

```bash
ssh-keygen -t ed25519 -a 200 -C "[email protected]"
```

Add newly generated key into Authorized keys. Read more about authorized keys [here](https://www.ssh.com/ssh/authorized_keys/).

rsa
### Add rsa key into Authorized keys

```bash
cat .ssh/id_rsa.pub | ssh b@B 'cat >> .ssh/authorized_keys'
```

ed25519
### Add ed25519 key into Authorized keys

```bash
cat .ssh/id_ed25519.pub | ssh b@B 'cat >> .ssh/authorized_keys'
```

Copy Private Key content and paste in Github Secrets.

rsa
### Copy rsa Private key

```bash
clip < ~/.ssh/id_rsa
```

ed25519
### Copy ed25519 Private key

```bash
clip < ~/.ssh/id_ed25519
Expand Down

0 comments on commit e4a8810

Please sign in to comment.