generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
28 lines (28 loc) · 837 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
name: 'Simple FTP upload'
description: 'Allows you to upload contents of a directory to an FTP server over FTP or FTPS'
author: 'Dennis Ameling'
inputs:
server:
required: true
description: "FTP server"
username:
required: true
description: "FTP username"
password:
required: true
description: "FTP password"
port:
required: false
description: "Server port to connect to (read your web hosts docs). Defaults to 21."
secure:
required: false
description: "True uses FTPS, while false uses plain FTP. Defaults to true."
local_dir:
required: false
description: "Folder to upload from, must end with trailing slash /"
server_dir:
required: false
description: "Path to upload to on the server. Must end with trailing slash /"
runs:
using: 'node20'
main: 'dist/index.js'