burnett01-rsync-deployments/README.md

58 lines
1.7 KiB
Markdown
Raw Normal View History

2019-02-09 21:19:13 +08:00
# rsync deployments
2019-02-09 21:17:45 +08:00
2019-12-04 23:08:15 +08:00
Forked from [Contention/rsync-deployments](https://github.com/Contention/rsync-deployments)
2019-11-13 07:45:15 +08:00
This GitHub Action deploys files in `GITHUB_WORKSPACE` to a folder on a server via rsync over ssh.
2019-02-09 21:17:45 +08:00
2019-11-13 07:45:15 +08:00
Use this action in a build/test workflow which leaves deployable code in `GITHUB_WORKSPACE`.
2019-02-09 21:17:45 +08:00
# Required SECRETs
2019-11-13 07:45:15 +08:00
This action needs a `DEPLOY_KEY` secret variable. This should be the private key part of a 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 21:17:45 +08:00
2019-11-26 05:13:12 +08:00
# ARGs
2019-11-13 06:39:54 +08:00
This action requires 4 args in the `with` block.
2019-02-09 21:17:45 +08:00
1. `swtiches` - The first is for any initial/required rsync flags, eg: `-avzr --delete`
2019-02-09 21:17:45 +08:00
2019-12-04 23:08:51 +08:00
2. `rsh` - Remote shell commands, eg for using a different SSH port: `"-p ${{ secrets.DEPLOY_PORT }}"`
2019-02-09 21:17:45 +08:00
3. `path` - The source path, if none; use `""`
2019-11-13 06:39:54 +08:00
4. `upload_path` - The deployment target, and should be in the format: `[USER]@[HOST]:[PATH]`
2019-02-09 21:17:45 +08:00
# Example usage
```
name: DEPLOY
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: rsync deployments
2019-12-04 23:20:24 +08:00
uses: burnett01/rsync-deployments@1.0
with:
switches: -avzr --delete --exclude="" --include=""
2019-11-13 06:12:20 +08:00
rsh: "-p ${{ secrets.DEPLOY_PORT }}"
path: src/
upload_path: user@example.com:/var/www/html/
env:
2019-11-13 06:12:20 +08:00
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
2019-02-09 21:17:45 +08:00
```
## Disclaimer
2019-11-13 07:45:15 +08:00
If you're using GitHub Actions, you probably already know that it's still in limited public beta, and GitHub advise against using Actions in production.
2019-02-09 21:17:45 +08:00
2019-11-13 05:50:40 +08:00
So, check your keys. Check your deployment paths. And use at your own risk.