forked from bitrise-steplib/steps-ftp-upload
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstep.yml
58 lines (58 loc) · 1.5 KB
/
step.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
46
47
48
49
50
51
52
53
54
55
56
57
58
title: "FTP Upload"
summary: You get what you see, upload a file or directory to the target directory
description: |-
Upload a single file or a folder (recursively) to an FTP server.
website: https://github.com/bitrise-io/steps-ftp-upload
source_code_url: https://github.com/bitrise-io/steps-ftp-upload
support_url: https://github.com/bitrise-io/steps-ftp-upload/issues
host_os_tags:
- osx-10.9
project_type_tags: []
type_tags:
- ftp
- uploader
- deploy
is_requires_admin_user: false
is_always_run: false
is_skippable: false
dependencies: []
run_if: ""
inputs:
- hostname: ""
opts:
title: "Host"
summary: ""
description: |-
Host of the target FTP (example: ftp.someserver.com)
is_required: true
is_required: true
- username: ""
opts:
title: "Username"
summary: ""
description: ""
is_required: true
- password: ""
opts:
title: "Password"
summary: ""
description: ""
is_required: true
- upload_source_path: ""
opts:
title: "Source path"
description: |
The source (local) file or directory for the FTP upload.
Format examples: "$HOME/temp" or "$HOME/temp/")
summary: ""
is_required: true
is_expand: true
- upload_target_path: ""
opts:
title: "Target / remote path"
description: |
The target (remote) path for the FTP upload.
Target is handled as directory if ends with "/", file otherwise.
summary: ""
is_required: true
outputs: []