FTPS with YAML
Learn more about:
YAML parameters for FTPS
Name | Type | Description |
---|---|---|
action Required | String | The ID of the action. |
type Required | String | The type of the action. Should be set to FTPS . |
host Required | String | The host for the connection. |
login Required | String | The username required to connect to the server. |
password Required | String | The password required to connect to the server. |
port Required | String | The port for the connection. |
input_type | String | Defines whether the files are deployed from the repository or from the build filesystem. Can be one of SCM_REPOSITORY or BUILD_ARTIFACTS . |
local_path | String | The path in the repository. |
remote_path | String | The absolute or relative path on the remote server. |
deployment_excludes | String[] | The paths and/or files that will be left our during the deployment. |
deployment_includes | String[] | The exceptions from the ignore patterns set in deployment_excludes . |
YAML example for FTPS
actions:- action: "Upload files to localhost"type: "FTPS"input_type: "SCM_REPOSITORY"local_path: "/"remote_path: "Home/www"login: "api_tests_user"password: "api_tests_password"host: "localhost"port: "21"deployment_excludes:- "/assets"- "file.txt"deployment_includes:- "/assets/assets-new/"- "/assets/file.txt"