-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
36 lines (33 loc) · 991 Bytes
/
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
name: dSFTP
description: Easily deploy your files onto your server via SFTP protocol
author: DynamoRed
runs:
using: node16
main: dist/index.js
branding:
icon: upload-cloud
color: red
inputs:
host:
description: The IP adress of your server.
required: true
user:
description: The name of the user you want to use to upload your files/folders.
required: true
password:
description: The password of the user mentionned before.
required: true
paths:
description: "Paths are written as objects (key/value) with key = local path and value = parent remote path."
required: true
default: '{"./hello":"/home/ghaction"}'
port:
description: "The SFTP port of your server."
default: "22"
agent:
description: "Path to your server SSH agent."
default: ""
key:
description: "Your SSH private key content."
keyPassphrase:
description: "If your SSH private key defined just before is encrypted, write the passphrase here."