跳到主要内容

AWS CodeDeploy with YAML

List of YAML parameters and examples for the "AWS CodeDeploy" action

YAML parameters for AWS CodeDeploy

名称类型描述
action
必填
StringThe ID of the action.
type
必填
StringThe type of the action. Should be set to CODE_DEPLOY.
application_name
必填
StringThe name of the application.
integration_hash
必填
StringThe ID of the integration.
region
必填
StringThe name of the Amazon region. The full list of regions is available here.
group_name
必填
StringThe Amazon group name.
config_name
必填
StringThe name of the CodeDeploy configuration.
descriptionStringThe comment about the deployment.
ignore_application_stop_failuresBooleanSee here.
update_outdated_instances_onlyBooleanSee here.
wait_for_finish_deploymentBooleanDefines whether to wait for the finish of the deployment in Amazon Code Deploy.
deployment_excludesString[]The paths and/or files that will be left out during the deployment.
deployment_includesString[]The exceptions from the ignore patterns set in deployment_excludes.
local_pathStringThe path in the repository.

YAML example for AWS CodeDeploy

actions:
- action: "Upload files to Code Deploy"
type: "CODE_DEPLOY"
local_path: "/"
application_name: "buddy-tests"
group_name: "DemoFleet"
config_name: "CodeDeployDefault.OneAtATime"
description: "Deploy comment."
ignore_application_stop_failures: true
update_outdated_instances_only: true
wait_for_finish_deployment: true
region: "us-east-1"
integration_hash: "5ddb7c180fb38be67bd78a88a"
deployment_excludes:
- "/assets/"
- "file.txt"
deployment_includes:
- "/assets/assets-new/"
- "/assets/file.txt"