DigitalOcean CDN with YAML
Learn more about:
YAML parameters for DigitalOcean CDN
Name | Type | Description |
---|---|---|
action Required | String | The name of the action. |
type Required | String | The type of the action. Should be set to GOOGLE_CDN . |
endpoint_id Required | String | The ID of the DigitalOcean CDN web distribution. |
integration_hash Required | String | The ID of the integration. |
distribution_name Required | String | The name of the DigitalOcean CDN web distribution. |
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. |
purge_all | Boolean | Specifies whether or not the whole cache should be removed. |
deployment_excludes | String[] | The paths and/or files that will be left out during the deployment. Available only if purge_all is set to false . |
deployment_includes | String[] | The exceptions from the ignore patterns set in deployment_excludes . |
YAML example for DigitalOcean CDN
actions:
- action: "Digital Ocean CDN"
type: "DIGITAL_OCEAN_CDN"
input_type: "SCM_REPOSITORY"
local_path: "/"
endpoint_id: "df590699-f862-45d1-aad0-0e74280ebe50"
purge_all: false
remote_path: "/merged"
integration_hash: "5ddb7c180fb38be67bd78a88a"
deployment_excludes:
- "/tmp"
- "*.log"
deployment_includes:
- "/tmp/assets"
- "/tmp/styles"
Last modified on April 26, 2022