rsync-deployments/README.md

57 lines
1.8 KiB
Markdown
Raw Normal View History

2019-02-09 14:19:13 +01:00
# rsync deployments
2019-02-09 14:17:45 +01:00
2019-02-09 14:19:13 +01:00
This GitHub Action deploys *everything* in `GITHUB_WORKSPACE` to a folder on a server via rsync over ssh.
2019-02-09 14:17:45 +01:00
This action would usually follow a build/test action which leaves deployable code in `GITHUB_WORKSPACE`.
# Required SECRETs
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.
2019-02-09 14:17:45 +01:00
# Required ARGs
2019-11-12 23:12:20 +01:00
This action requires 5 args in the `with` block.
2019-02-09 14:17:45 +01:00
1. `swtiches` - The first is for any initial/required rsync flags, eg: `-avzr --delete`
2019-02-09 14:17:45 +01:00
2019-11-12 23:12:20 +01:00
2. `rsh` - Optional remote shell commands, eg for using a different SSH port: `"-p ${{ secrets.DEPLOY_PORT }}"`
2019-02-09 14:17:45 +01:00
2019-11-12 23:12:20 +01:00
3. `excludes` - Any `--exclude` flags and directory pairs, eg: `--exclude .htaccess --exclude /uploads/`. Use "" if none required.
2019-02-09 14:17:45 +01:00
2019-11-12 23:12:20 +01:00
4. `path` - The source path, if none; use `""`
5. `upload_path` - The deployment target, and should be in the format: `[USER]@[HOST]:[PATH]`
2019-02-09 14:17:45 +01:00
# Example usage
```
name: DEPLOY
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: rsync deployments
2019-11-12 22:50:40 +01:00
uses: burnett01/rsync-deployments@master
with:
switches: -avzr --delete
2019-11-12 23:12:20 +01:00
rsh: "-p ${{ secrets.DEPLOY_PORT }}"
excludes: ""
path: src/
upload_path: user@example.com:/var/www/html/
env:
2019-11-12 23:12:20 +01:00
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
2019-02-09 14:17:45 +01:00
```
## Disclaimer
If you're using GitHub Actions, you'll probably already know that it's still in limited public beta, and GitHub advise against using Actions in production.
2019-11-12 22:50:40 +01:00
So, check your keys. Check your deployment paths. And use at your own risk.