generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
45 lines (41 loc) · 1.01 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: 'ssh-deploy-nodejs'
description: 'Deploying a Node.js Project on a Remote Server via SSH'
author: 'lycpan233'
branding:
icon: 'heart'
color: 'purple'
inputs:
host:
description: 'IP address of the host'
required: true
username:
description: 'Username of SSH user'
required: true
port:
description: 'Port of SSH Protocol'
required: false
default: '22'
password:
description: 'Password of user, if not using private key'
required: false
privateKey:
description: 'Private Key of user, if not using password'
required: false
workdir:
description: 'Specify working directory'
required: false
source:
description: 'Source path of the file to be uploadeds'
required: false
destination:
description: 'The destination path of the remote'
required: false
scripts:
description: 'Shell command to be executed'
required: false
outputs:
status:
description: 'Execution Status of the Action'
runs:
using: node20
main: dist/index.js