upload-to-dropbox
- Last updated on March 20, 2025
- •
- Less than a minute to read
This task uploads the specified artifact to an application folder on the Dropbox server.
Parameters
clientId
- The Client ID value in OAuth2 Credentials in Google Cloud.clientSecret
- The Client Secret value in OAuth2 Credentials in Google Cloud.refreshToken
- The Refresh Token value for autonomous (offline) authorization.
For each artifact listed in inputArtifacts
, a path for saving the file must be specified as follows:
"<artifact_name>": "<remote_path>"
If the path includes subfolders, the handler checks for the existence of these folders and attempts to create them if necessary. For example:
"design": "/site/wwwroot/App_Data/{{project.id}}/{{project.orderNumber}}/source-design-{{project.id}}"
Processing of artifact groups is supported. The symbol *
indicates the insertion point for the artifact index in the file path, for example:
"result*": "/site/wwwroot/App_Data/{{project.id}}/{{project.orderNumber}}/print-file-*-{{project.id}}"
Overriding the path for a specified artifact in the group is also supported, for example:
"result1": "/site/wwwroot/App_Data/{{project.id}}/{{project.orderNumber}}/override-name-for-the-first-result"
These parameters support argument interpolation following the common rules.
Example
{
"description": "Upload to Dropbox",
"name": "upload-to-dropbox",
"type": "upload-to-dropbox",
"inputArtifacts": [
"design",
"result*"
],
"parameters": {
"clientId": "12345",
"clientSecret": "12345",
"refreshToken": "12345",
"design": "/site/wwwroot/App_Data/{{project.id}}/{{project.orderNumber}}/source-design-{{project.id}}",
"result*": "/site/wwwroot/App_Data/{{project.id}}/{{project.orderNumber}}/print-file-*-{{project.id}}",
"result1": "/site/wwwroot/App_Data/{{project.id}}/{{project.orderNumber}}/override-name-for-the-first-result"
},
"outputArtifacts": []
}