2019-02-09 21:19:13 +08:00
# rsync deployments
2019-02-09 21:17:45 +08:00
2022-07-30 16:19:44 +08:00
This GitHub Action (amd64) deploys files in `GITHUB_WORKSPACE` to a remote folder via rsync over ssh.
2019-02-09 21:17:45 +08:00
2019-12-27 23:29:01 +08:00
Use this action in a CD workflow which leaves deployable code in `GITHUB_WORKSPACE` .
2024-03-06 21:33:58 +08:00
The base-image [drinternet/rsync ](https://github.com/JoshPiper/rsync-docker/ ) of this action is very small and is based on Alpine 3.19.1 (no cache) which results in fast deployments.
2019-02-09 21:17:45 +08:00
2019-12-05 02:09:24 +08:00
---
2019-12-05 02:11:03 +08:00
## Inputs
2019-02-09 21:17:45 +08:00
2019-12-05 01:41:36 +08:00
- `switches` * - The first is for any initial/required rsync flags, eg: `-avzr --delete`
2019-02-09 21:17:45 +08:00
2019-12-05 02:02:32 +08:00
- `rsh` - Remote shell commands
2019-11-13 06:39:54 +08:00
2024-03-06 19:29:40 +08:00
- `legacy_allow_rsa_hostkeys` - Enables support for legacy RSA host keys on OpenSSH 8.8+. ("true" / "false")
2022-07-30 16:19:44 +08:00
- `path` - The source path. Defaults to GITHUB_WORKSPACE and is relative to it
2019-02-09 21:17:45 +08:00
2019-12-05 01:35:52 +08:00
- `remote_path` * - The deployment target path
2019-02-09 21:17:45 +08:00
2019-12-05 01:28:33 +08:00
- `remote_host` * - The remote host
2019-02-09 21:17:45 +08:00
2019-12-05 01:58:49 +08:00
- `remote_port` - The remote port. Defaults to 22
2019-12-05 01:28:33 +08:00
- `remote_user` * - The remote user
2019-11-13 06:39:54 +08:00
2019-12-05 01:28:33 +08:00
- `remote_key` * - The remote ssh key
2021-08-03 03:57:01 +08:00
- `remote_key_pass` - The remote ssh key passphrase (if any)
2019-12-05 01:37:11 +08:00
``* = Required``
2019-12-05 01:28:33 +08:00
2021-08-03 03:57:01 +08:00
## Required secret(s)
This action needs secret variables for the ssh private key of your key pair. The public key part should be added to the authorized_keys file on the server that receives the deployment. The secret variable should be set in the Github secrets section of your org/repo and then referenced as the `remote_key` input.
2019-12-05 01:28:33 +08:00
2021-08-03 03:57:01 +08:00
> Always use secrets when dealing with sensitive inputs!
For simplicity, we are using `DEPLOY_*` as the secret variables throughout the examples.
2019-02-09 21:17:45 +08:00
2019-12-05 02:09:24 +08:00
## Example usage
2019-02-09 21:17:45 +08:00
2019-12-05 01:28:33 +08:00
Simple:
2019-02-09 21:17:45 +08:00
```
2019-09-15 02:33:49 +08:00
name: DEPLOY
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
2023-06-08 23:54:10 +08:00
- uses: actions/checkout@v3
2019-09-15 02:33:49 +08:00
- name: rsync deployments
2024-03-06 22:04:26 +08:00
uses: burnett01/rsync-deployments@7.0.0
2019-09-15 02:33:49 +08:00
with:
2019-12-05 01:28:33 +08:00
switches: -avzr --delete
2019-09-15 02:33:49 +08:00
path: src/
2019-12-05 01:28:33 +08:00
remote_path: /var/www/html/
remote_host: example.com
remote_user: debian
remote_key: ${{ secrets.DEPLOY_KEY }}
```
2019-09-15 02:33:49 +08:00
2019-12-05 01:28:33 +08:00
Advanced:
2019-09-15 02:33:49 +08:00
2019-02-09 21:17:45 +08:00
```
2019-12-05 01:28:33 +08:00
jobs:
deploy:
runs-on: ubuntu-latest
steps:
2023-06-08 23:54:10 +08:00
- uses: actions/checkout@v3
2019-12-05 01:28:33 +08:00
- name: rsync deployments
2024-03-06 22:04:26 +08:00
uses: burnett01/rsync-deployments@7.0.0
2019-12-05 01:28:33 +08:00
with:
switches: -avzr --delete --exclude="" --include="" --filter=""
path: src/
remote_path: /var/www/html/
remote_host: example.com
2019-12-05 02:06:58 +08:00
remote_port: 5555
2019-12-05 01:28:33 +08:00
remote_user: debian
remote_key: ${{ secrets.DEPLOY_KEY }}
```
2019-02-09 21:17:45 +08:00
2021-08-03 03:57:01 +08:00
For better **security** , I suggest you create additional secrets for remote_host, remote_port, remote_user and remote_path inputs.
2019-12-05 01:35:52 +08:00
```
2019-12-27 23:37:44 +08:00
jobs:
deploy:
runs-on: ubuntu-latest
steps:
2023-06-08 23:54:10 +08:00
- uses: actions/checkout@v3
2019-12-05 01:35:52 +08:00
- name: rsync deployments
2024-03-06 22:04:26 +08:00
uses: burnett01/rsync-deployments@7.0.0
2019-12-05 01:35:52 +08:00
with:
switches: -avzr --delete
path: src/
2021-08-03 03:57:01 +08:00
remote_path: ${{ secrets.DEPLOY_PATH }}
2019-12-05 01:35:52 +08:00
remote_host: ${{ secrets.DEPLOY_HOST }}
2019-12-05 02:02:32 +08:00
remote_port: ${{ secrets.DEPLOY_PORT }}
2019-12-05 01:35:52 +08:00
remote_user: ${{ secrets.DEPLOY_USER }}
remote_key: ${{ secrets.DEPLOY_KEY }}
```
2019-12-05 02:09:24 +08:00
2021-08-03 03:57:01 +08:00
If your private key is passphrase protected you should use:
```
jobs:
deploy:
runs-on: ubuntu-latest
steps:
2023-06-08 23:54:10 +08:00
- uses: actions/checkout@v3
2021-08-03 03:57:01 +08:00
- name: rsync deployments
2024-03-06 22:04:26 +08:00
uses: burnett01/rsync-deployments@7.0.0
2021-08-03 03:57:01 +08:00
with:
switches: -avzr --delete
path: src/
remote_path: ${{ secrets.DEPLOY_PATH }}
remote_host: ${{ secrets.DEPLOY_HOST }}
remote_port: ${{ secrets.DEPLOY_PORT }}
remote_user: ${{ secrets.DEPLOY_USER }}
remote_key: ${{ secrets.DEPLOY_KEY }}
remote_key_pass: ${{ secrets.DEPLOY_KEY_PASS }}
```
2024-03-06 19:29:40 +08:00
---
#### Legacy RSA Hostkeys support for OpenSSH Servers >= 8.8+
If your remote OpenSSH Server still uses RSA hostkeys, then you have to
manually enable legacy support for this by using ``legacy_allow_rsa_hostkeys: "true"``.
```
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: rsync deployments
2024-03-06 22:04:26 +08:00
uses: burnett01/rsync-deployments@7.0.0
2024-03-06 19:29:40 +08:00
with:
switches: -avzr --delete
legacy_allow_rsa_hostkeys: "true"
path: src/
remote_path: ${{ secrets.DEPLOY_PATH }}
remote_host: ${{ secrets.DEPLOY_HOST }}
remote_port: ${{ secrets.DEPLOY_PORT }}
remote_user: ${{ secrets.DEPLOY_USER }}
remote_key: ${{ secrets.DEPLOY_KEY }}
```
See [#49 ](https://github.com/Burnett01/rsync-deployments/issues/49 ) and [#24 ](https://github.com/Burnett01/rsync-deployments/issues/24 ) for more information.
2021-08-03 03:57:01 +08:00
---
2024-03-06 19:35:07 +08:00
## Version 6.0 (MAINTENANCE)
Check here:
- https://github.com/Burnett01/rsync-deployments/tree/6.0 (alpine 3.17.2)
---
## Version 5.0, 5.1 & 5.2 & 5.x (DEPRECATED)
2022-08-01 23:59:24 +08:00
Check here:
- https://github.com/Burnett01/rsync-deployments/tree/5.0 (alpine 3.11.x)
- https://github.com/Burnett01/rsync-deployments/tree/5.1 (alpine 3.14.1)
- https://github.com/Burnett01/rsync-deployments/tree/5.2 (alpine 3.15.0)
2023-06-01 17:49:29 +08:00
- https://github.com/Burnett01/rsync-deployments/tree/5.2.1 (alpine 3.16.1)
2023-06-01 17:48:45 +08:00
- https://github.com/Burnett01/rsync-deployments/tree/5.2.2 (alpine 3.17.2)
2024-03-06 19:35:07 +08:00
2022-08-01 23:59:24 +08:00
---
2021-08-03 03:57:01 +08:00
2024-03-06 19:35:07 +08:00
## Version 4.0 & 4.1 (EOL)
2021-08-03 03:57:01 +08:00
Check here:
- https://github.com/Burnett01/rsync-deployments/tree/4.0
- https://github.com/Burnett01/rsync-deployments/tree/4.1
Version 4.0 & 4.1 use the ``drinternet/rsync:1.0.1`` base-image.
2019-12-05 02:09:24 +08:00
---
2022-01-02 02:29:16 +08:00
## Version 3.0 (EOL)
2020-01-05 21:47:18 +08:00
Check here: https://github.com/Burnett01/rsync-deployments/tree/3.0
Version 3.0 uses the ``alpine:latest`` base-image directly.< br >
Consider upgrading to 4.0 that uses a docker-image ``drinternet/rsync:1.0.1`` that is< br >
based on ``alpine:latest``and heavily optimized for rsync.
2021-08-03 03:57:01 +08:00
## Version 2.0 (EOL)
2019-12-27 23:33:45 +08:00
Check here: https://github.com/Burnett01/rsync-deployments/tree/2.0
Version 2.0 uses a larger base-image (``ubuntu:latest``).< br >
Consider upgrading to 3.0 for even faster deployments.
2019-12-05 02:09:24 +08:00
## Version 1.0 (EOL)
Check here: https://github.com/Burnett01/rsync-deployments/tree/1.0
Please note that version 1.0 has reached end of life state.
2020-01-09 03:10:18 +08:00
---
## Acknowledgements
+ This project is a fork of [Contention/rsync-deployments ](https://github.com/Contention/rsync-deployments )
+ Base image [JoshPiper/rsync-docker ](https://github.com/JoshPiper/rsync-docker )
2020-10-06 00:46:16 +08:00
---
## Media
This action was featured in multiple blogs across the globe:
2023-06-08 23:54:10 +08:00
> Disclaimer: The author & co-authors are not responsible for the content of the site-links below.
2020-10-06 00:46:16 +08:00
- https://leobrack.co.uk/blog/2020-02-15-automatically-push-changes-to-your-live-site-with-github-actions
- https://blog.maniak.co/ci-cd-for-wordpress/
- https://elijahverdoorn.com/2020/04/14/automating-deployment-with-github-actions/
- https://www.vektor-inc.co.jp/post/github-actions-deploy/
- https://ews.ink/tech/blog-deploy-2/
- https://webpick.info/automatiser-avec-github-actions/
2020-01-09 03:10:18 +08:00
2021-04-03 21:02:42 +08:00
- https://matthias-andrasch.eu/blog/2021/tutorial-webseite-mittels-github-actions-deployment-zu-uberspace-uebertragen-rsync/
- https://mikael.koutero.me/posts/hugo-github-actions-deploy-rsync/
- https://cdmana.com/2021/02/20210208122400688I.html
- https://jishuin.proginn.com/p/763bfbd38928
- https://cloud.tencent.com/developer/article/1786522
- http://www.ningco.cn/github_action_deploy_blog/
- https://qdmana.com/2021/01/20210127094413405u.html