WebDAV with YAML
Tip
Learn more about:
YAML parameters for WebDAV
Name | Type | Description |
---|---|---|
action Required | String | The ID of the action. |
type Required | String | The type of the action. Should be set to WEB_DAV . |
login Required | String | The username required to connect to the server. |
password Required | String | The password required to connect to the server. |
web_dav_url Required | String | The URL to your WebDAV server. |
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 out during the deployment. |
deployment_includes | String[] | The exceptions from the ignore patterns set in deployment_excludes . |
YAML example for WebDAV
yamlactions: - action: "Upload files to https://mysite.com/webdav/" type: "WEB_DAV" local_path: "/src" login: "root" password: "secure!TPR+DEaI7z46j6Ns4zkSJQ==" web_dav_url: "https://mysite.com/webdav/" deployment_excludes: - "/dir1" - "*.log"
Last modified on Sep 23, 2024