Skip to content

Commit 8a74c69

Browse files
committed
readme
1 parent ad8225d commit 8a74c69

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/dryrun-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
target-server: mi3-sr24.supercp.com
1616
remote-user: samkirkland
17-
remote-key: ${{ secrets.SSH_KEY }}
17+
private-ssh-key: ${{ secrets.SSH_KEY }}
1818
ssh-port: 7822
1919
destination-path: ~/
2020
rsync-options: --dry-run --archive --verbose --compress --delete-after --human-readable --exclude=.git* --exclude=.git/ --exclude=README.md --exclude=readme.md --exclude=.gitignore

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
target-server: example.com
2828
remote-user: username
29-
remote-key: ${{ secrets.SSH_KEY }}
29+
private-ssh-key: ${{ secrets.SSH_KEY }}
3030
destination-path: ~/destinationFolder/
3131
```
3232
@@ -55,7 +55,7 @@ jobs:
5555
Keys can be added directly to your .yml config file or referenced from your project `Secrets` storage.
5656

5757
To add a `secret` go to the `Settings` tab in your project then select `Secrets`.
58-
I strongly recommend you store your `remote-key` as a secret.
58+
I strongly recommend you store your `private-ssh-key` as a secret.
5959

6060
| Key Name | Required? | Example | Default | Description |
6161
|--------------------|-----------|------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|
@@ -119,7 +119,7 @@ jobs:
119119
with:
120120
target-server: example.com
121121
remote-user: username
122-
remote-key: ${{ secrets.SSH_KEY }}
122+
private-ssh-key: ${{ secrets.SSH_KEY }}
123123
destination-path: ~/destinationFolder/
124124
```
125125

@@ -141,7 +141,7 @@ jobs:
141141
with:
142142
target-server: example.com
143143
remote-user: username
144-
remote-key: ${{ secrets.SSH_KEY }}
144+
private-ssh-key: ${{ secrets.SSH_KEY }}
145145
ssh-port: 22
146146
destination-path: ~/destinationFolder/
147147
rsync-options: --dry-run --archive --verbose --compress --delete-after --human-readable --exclude=.git* --exclude=.git/ --exclude=README.md --exclude=readme.md --exclude=.gitignore

0 commit comments

Comments
 (0)