Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
SamKirkland committed Sep 4, 2022
1 parent ad8225d commit 8a74c69
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dryrun-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/
```

Expand Down Expand Up @@ -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 |
|--------------------|-----------|------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|
Expand Down Expand Up @@ -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/
```

Expand All @@ -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
Expand Down

0 comments on commit 8a74c69

Please sign in to comment.