跳到主要内容

Copy files from another pipeline with YAML

List of YAML parameters and examples for the \"Copy Files From Another Pipeline\" action.

YAML parameters for Copy files from another pipeline

名称类型描述
action
必填
StringThe ID of the action.
type
必填
StringThe type of the action. Should be set to COPY_FILES.
source_pipeline_id
必填
IntegerThe ID of the pipeline from which files will be copied. Not required if both source_project_name and source_pipeline_name are set instead.
source_project_name
必填
StringThe name of the project containing the pipeline from which files will be copied. Not required if source_pipeline is set instead.
source_pipeline_name
必填
StringThe name of the pipeline from which files will be copied. Not required if source_pipeline is set instead.
source_pathStringThe path in the source pipeline’s filesystem.
target_pathStringThe path in the current pipeline’s filesystem.
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.
copy_hidden_filesBooleanWhen set to true the hidden files and folders (the ones with the name beginning with a ".") are copied.

YAML example for Copy files from another pipeline

actions:
- action: "Copy files from backend/dev"
type: "COPY_FILES"
copy_hidden_files: true
trigger_time: "ON_EVERY_EXECUTION"
source_project_name: "backend"
source_pipeline_name: "dev"
source_path: "/src"
target_path: "/www"
deployment_excludes:
- "/tmp"
- "*.log"
deployment_includes:
- "/tmp/assets"
- "/tmp/styles"