Skip to content

Commit 09dcf37

Browse files
committed
Update kamal-deploy.md
1 parent fbaf899 commit 09dcf37

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

MyApp/_pages/kamal-deploy.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ x new blazor-vue MyApp
3939
ssh-keygen -t ed25519 -C "deploy@myapp" -f ./deploy-key
4040
```
4141

42-
3. Configure server access:
42+
3. Copy public key to enable server access:
4343
```bash
44-
cat ~/my-deploy-key.pub | ssh <user>@<your-ip-address> "cat >> ~/.ssh/authorized_keys"
44+
cat ~/deploy-key.pub | ssh <user>@<your-ip> "cat >> ~/.ssh/authorized_keys"
4545
```
4646

4747
### GitHub Actions
@@ -51,7 +51,7 @@ The template includes a GitHub Actions workflow that is broken up into 3 steps t
5151
Once you create your GitHub repository, add the `SSH_PRIVATE_KEY` secret to your repository settings with the contents of your private key file.
5252

5353
```bash
54-
gh secret set PRIVATE_SSH_KEY < ~/my-deploy-key
54+
gh secret set PRIVATE_SSH_KEY < ~/deploy-key
5555
```
5656

5757
### Configuration
@@ -127,8 +127,6 @@ Delete the `.<app-name>` file in your deployment user's home directory and re-ru
127127

128128
If you are getting:
129129

130-
```
131-
Image ghcr.io/netcoreapps/northwindauto:latest is missing the 'service' label
132-
```
130+
Image ghcr.io/netcoreapps/northwindauto:latest is missing the 'service' label
133131

134132
Ensure that your AppHost csproj file has `ContainerLabel` with the value matching the `service` in your `deploy.yml` file.

0 commit comments

Comments
 (0)