ssh-deploy/README.md

75 lines
2.0 KiB
Markdown
Raw Normal View History

2019-09-26 00:24:25 +03:00
# ssh deployments
2019-02-09 16:17:45 +03:00
2019-09-26 00:24:25 +03:00
This GitHub Action deploys specific directory from `GITHUB_WORKSPACE` to a folder on a server via rsync over ssh.
2019-02-09 16:17:45 +03:00
2019-09-26 00:24:25 +03:00
This action would usually follow a build/test action which leaves deployable code in `GITHUB_WORKSPACE`, eg `dist`;
2019-02-09 16:17:45 +03:00
2019-09-26 00:52:29 +03:00
# Configuration
2019-02-09 16:17:45 +03:00
2019-09-26 00:52:29 +03:00
Pass configuration with `env` vars
2019-02-09 16:17:45 +03:00
2019-09-26 00:52:29 +03:00
1. `DEPLOY_KEY`
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.
2019-02-09 16:17:45 +03:00
2019-09-26 00:52:29 +03:00
2. `ARGS`
For any initial/required rsync flags, eg: `-avzr --delete`
2019-02-09 16:17:45 +03:00
2019-09-26 00:52:29 +03:00
3. `SOURCE`
The source directory, path relative to `$GITHUB_WORKSPACE` root, eg: `dist`
2019-02-09 16:17:45 +03:00
2019-09-26 00:52:29 +03:00
4. `TARGET`
The target directory, in the format`[USER]@[HOST]:[PATH]`
2019-02-09 16:17:45 +03:00
2019-09-26 00:24:25 +03:00
2019-09-26 00:52:29 +03:00
```
- name: Deploy to Staging server
2019-09-26 01:00:04 +03:00
uses: easingthemes/ssh-deploy@v1.0.0
2019-09-26 00:52:29 +03:00
env:
DEPLOY_KEY: ${{ secrets.SERVER_SSH_KEY }}
ARGS: "-rltgoDzvO --delete"
SOURCE: "dist"
TARGET: ${{ secrets.SERVER_STAGING }}
```
2019-02-09 16:17:45 +03:00
# Example usage
```
2019-09-26 00:52:29 +03:00
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install npm dependencies
run: |
npm install
- name: Run build task
run: |
npm run build --if-present
- name: Deploy to Staging server
2019-09-26 01:00:04 +03:00
uses: easingthemes/ssh-deploy@v1.0.0
2019-09-26 00:52:29 +03:00
env:
DEPLOY_KEY: ${{ secrets.SERVER_SSH_KEY }}
ARGS: "-rltgoDzvO --delete"
SOURCE: "dist"
TARGET: ${{ secrets.SERVER_STAGING }}
2019-02-09 16:17:45 +03: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.
So, check your keys. Check your deployment paths. And use at your own risk.