2019-09-26 00:24:25 +03:00
|
|
|
# ssh deployments
|
2019-02-09 16:17:45 +03:00
|
|
|
|
2019-10-03 01:51:32 +03:00
|
|
|
Deploy code with rsync over ssh, using NodeJS.
|
|
|
|
|
|
|
|
NodeJS version is more than a minute `faster` than simple Docker version.
|
|
|
|
|
2019-12-29 17:36:34 +03:00
|
|
|
This GitHub Action deploys specific directory from `GITHUB_WORKSPACE` to a folder on a server via rsync over ssh, using NodeJS.
|
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
|
|
|
|
2020-06-29 22:09:04 +03:00
|
|
|
##### 1. `SSH_PRIVATE_KEY` [required]
|
2019-10-03 01:51:32 +03:00
|
|
|
|
2020-06-29 22:09:04 +03:00
|
|
|
Private key part of an SSH key pair.
|
2020-04-12 00:08:36 +03:00
|
|
|
The public key part should be added to the `authorized_keys` file on the server that receives the deployment.
|
|
|
|
|
2020-06-29 22:09:04 +03:00
|
|
|
More info for SSH keys: https://www.ssh.com/ssh/public-key-authentication
|
|
|
|
|
2020-06-06 23:36:28 +03:00
|
|
|
The keys should be generated using the PEM format. You can use this command
|
2020-04-11 17:33:22 +03:00
|
|
|
|
|
|
|
```
|
|
|
|
ssh-keygen -m PEM -t rsa -b 4096
|
|
|
|
```
|
2019-02-09 16:17:45 +03:00
|
|
|
|
2020-06-29 22:09:04 +03:00
|
|
|
##### 2. `REMOTE_HOST` [required]
|
2019-10-03 01:51:32 +03:00
|
|
|
|
|
|
|
eg: mydomain.com
|
|
|
|
|
2020-06-29 22:09:04 +03:00
|
|
|
##### 3. `REMOTE_USER` [required]
|
2019-10-03 01:17:19 +03:00
|
|
|
|
2019-10-03 01:51:32 +03:00
|
|
|
eg: myusername
|
|
|
|
|
2020-06-29 22:09:04 +03:00
|
|
|
##### 4. `REMOTE_PORT` (optional, default '22')
|
2019-12-29 17:36:34 +03:00
|
|
|
|
|
|
|
eg: '59184'
|
|
|
|
|
2020-06-29 22:09:04 +03:00
|
|
|
##### 5. `ARGS` (optional, default '-rltgoDzvO')
|
2019-10-03 01:51:32 +03:00
|
|
|
|
2019-09-26 00:52:29 +03:00
|
|
|
For any initial/required rsync flags, eg: `-avzr --delete`
|
2019-02-09 16:17:45 +03:00
|
|
|
|
2020-06-29 22:09:04 +03:00
|
|
|
##### 6. `SOURCE` (optional, default '')
|
2019-10-03 01:51:32 +03:00
|
|
|
|
2019-10-03 01:17:19 +03:00
|
|
|
The source directory, path relative to `$GITHUB_WORKSPACE` root, eg: `dist/`
|
2019-02-09 16:17:45 +03:00
|
|
|
|
2020-06-29 22:09:04 +03:00
|
|
|
##### 7. `TARGET` (optional, default '/home/REMOTE_USER/')
|
2019-10-03 01:51:32 +03:00
|
|
|
|
2019-10-03 01:17:19 +03:00
|
|
|
The target directory
|
2019-02-09 16:17:45 +03:00
|
|
|
|
2021-03-12 09:42:12 +03:00
|
|
|
##### 8. `EXCLUDE` (optional, default '')
|
|
|
|
|
|
|
|
path to exclude separated by `,`, ie: `/dist/, /node_modules/`
|
|
|
|
|
2019-10-03 01:51:32 +03:00
|
|
|
# Usage
|
2019-09-26 00:24:25 +03:00
|
|
|
|
2021-05-28 00:33:55 +03:00
|
|
|
Use the latest version from Marketplace,eg: ssh-deploy@v2
|
|
|
|
or use the latest version from a branch, eg: ssh-deploy@main
|
2020-09-19 00:29:28 +03:00
|
|
|
|
2019-09-26 00:52:29 +03:00
|
|
|
```
|
2019-10-03 01:17:19 +03:00
|
|
|
- name: Deploy to Staging server
|
2021-05-28 00:33:55 +03:00
|
|
|
uses: easingthemes/ssh-deploy@main
|
2019-10-03 01:17:19 +03:00
|
|
|
env:
|
2022-10-28 05:16:02 +03:00
|
|
|
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
2019-10-03 01:51:32 +03:00
|
|
|
ARGS: "-rltgoDzvO"
|
2019-10-03 01:17:19 +03:00
|
|
|
SOURCE: "dist/"
|
|
|
|
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
|
|
|
|
REMOTE_USER: ${{ secrets.REMOTE_USER }}
|
|
|
|
TARGET: ${{ secrets.REMOTE_TARGET }}
|
2021-03-12 09:42:12 +03:00
|
|
|
EXCLUDE: "/dist/, /node_modules/"
|
2019-09-26 00:52:29 +03:00
|
|
|
```
|
2019-02-09 16:17:45 +03:00
|
|
|
|
2019-10-03 01:17:19 +03:00
|
|
|
# Example usage in workflow
|
2019-02-09 16:17:45 +03:00
|
|
|
|
|
|
|
```
|
2019-09-26 00:52:29 +03:00
|
|
|
name: Node CI
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2019-10-03 01:17:19 +03:00
|
|
|
- name: Install Node.js
|
2019-09-26 00:52:29 +03:00
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
2019-10-03 01:17:19 +03:00
|
|
|
node-version: '10.x'
|
2019-09-26 00:52:29 +03:00
|
|
|
- name: Install npm dependencies
|
2019-10-03 01:17:19 +03:00
|
|
|
run: npm install
|
2019-09-26 00:52:29 +03:00
|
|
|
- name: Run build task
|
2019-10-03 01:17:19 +03:00
|
|
|
run: npm run build --if-present
|
|
|
|
- name: Deploy to Server
|
2021-05-28 00:33:55 +03:00
|
|
|
uses: easingthemes/ssh-deploy@main
|
2019-10-03 01:17:19 +03:00
|
|
|
env:
|
2022-10-28 05:16:02 +03:00
|
|
|
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
2019-10-03 01:17:19 +03:00
|
|
|
ARGS: "-rltgoDzvO --delete"
|
|
|
|
SOURCE: "dist/"
|
|
|
|
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
|
|
|
|
REMOTE_USER: ${{ secrets.REMOTE_USER }}
|
|
|
|
TARGET: ${{ secrets.REMOTE_TARGET }}
|
2021-03-12 09:42:12 +03:00
|
|
|
EXCLUDE: "/dist/, /node_modules/"
|
2019-02-09 16:17:45 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
## Disclaimer
|
|
|
|
|
2020-04-11 17:30:28 +03:00
|
|
|
Check your keys. Check your deployment paths. And use at your own risk.
|