mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2024-11-21 15:03:46 +01:00
mention new rsh arg
This commit is contained in:
parent
59a1203852
commit
e07b616b2e
1 changed files with 8 additions and 5 deletions
13
README.md
13
README.md
|
@ -9,15 +9,17 @@ This action would usually follow a build/test action which leaves deployable cod
|
|||
This action needs a `DEPLOY_KEY` secret variable. This should be the private key part of an ssh key pair. The public key part should be added to the authorized_keys file on the server that receives the deployment. This should be set in the Github secrets section and then referenced as an `env` variable.
|
||||
|
||||
# Required ARGs
|
||||
This action requires 4 args in the `with` block.
|
||||
This action requires 5 args in the `with` block.
|
||||
|
||||
1. `swtiches` - The first is for any initial/required rsync flags, eg: `-avzr --delete`
|
||||
|
||||
2. `excludes` - Any `--exclude` flags and directory pairs, eg: `--exclude .htaccess --exclude /uploads/`. Use "" if none required.
|
||||
2. `rsh` - Optional remote shell commands, eg for using a different SSH port: `"-p ${{ secrets.DEPLOY_PORT }}"`
|
||||
|
||||
3. `path` - The path to your desired directory to be deployed, if none; use `""`
|
||||
3. `excludes` - Any `--exclude` flags and directory pairs, eg: `--exclude .htaccess --exclude /uploads/`. Use "" if none required.
|
||||
|
||||
4. `upload_path` - The deployment target, and should be in the format: `[USER]@[HOST]:[PATH]`
|
||||
4. `path` - The source path, if none; use `""`
|
||||
|
||||
5. `upload_path` - The deployment target, and should be in the format: `[USER]@[HOST]:[PATH]`
|
||||
|
||||
# Example usage
|
||||
|
||||
|
@ -37,12 +39,13 @@ jobs:
|
|||
uses: burnett01/rsync-deployments@master
|
||||
with:
|
||||
switches: -avzr --delete
|
||||
rsh: "-p ${{ secrets.DEPLOY_PORT }}"
|
||||
excludes: ""
|
||||
path: src/
|
||||
upload_path: user@example.com:/var/www/html/
|
||||
|
||||
env:
|
||||
DEPLOY_KEY: ${{ secrets.private_key }}
|
||||
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
|
||||
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue