diff --git a/.github/workflows/dryrun-deploy.yml b/.github/workflows/dryrun-deploy.yml index 4cb9ab2..97bd047 100644 --- a/.github/workflows/dryrun-deploy.yml +++ b/.github/workflows/dryrun-deploy.yml @@ -14,7 +14,7 @@ jobs: with: target-server: mi3-sr24.supercp.com remote-user: samkirkland - remote-key: ${{ secrets.SSH_KEY }} + private-ssh-key: ${{ secrets.SSH_KEY }} ssh-port: 7822 destination-path: ~/ rsync-options: --dry-run --archive --verbose --compress --delete-after --human-readable --exclude=.git* --exclude=.git/ --exclude=README.md --exclude=readme.md --exclude=.gitignore diff --git a/README.md b/README.md index 97b4276..01262f4 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ jobs: with: target-server: example.com remote-user: username - remote-key: ${{ secrets.SSH_KEY }} + private-ssh-key: ${{ secrets.SSH_KEY }} destination-path: ~/destinationFolder/ ``` @@ -55,7 +55,7 @@ jobs: Keys can be added directly to your .yml config file or referenced from your project `Secrets` storage. To add a `secret` go to the `Settings` tab in your project then select `Secrets`. -I strongly recommend you store your `remote-key` as a secret. +I strongly recommend you store your `private-ssh-key` as a secret. | Key Name | Required? | Example | Default | Description | |--------------------|-----------|------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -119,7 +119,7 @@ jobs: with: target-server: example.com remote-user: username - remote-key: ${{ secrets.SSH_KEY }} + private-ssh-key: ${{ secrets.SSH_KEY }} destination-path: ~/destinationFolder/ ``` @@ -141,7 +141,7 @@ jobs: with: target-server: example.com remote-user: username - remote-key: ${{ secrets.SSH_KEY }} + private-ssh-key: ${{ secrets.SSH_KEY }} ssh-port: 22 destination-path: ~/destinationFolder/ rsync-options: --dry-run --archive --verbose --compress --delete-after --human-readable --exclude=.git* --exclude=.git/ --exclude=README.md --exclude=readme.md --exclude=.gitignore