독립 control plane 구성을 위해 기존 Dart CLI/runtime을 runner 앱 경계로 옮기고, 후속 client/core/root 작업을 같은 마일스톤 task group에 연결한다.
29 lines
437 B
YAML
29 lines
437 B
YAML
---
|
|
# [샘플] AWS CLI 명령
|
|
|
|
property:
|
|
workspace: /path/to/project
|
|
|
|
pipeline:
|
|
id: main
|
|
workflow:
|
|
- exe: aws-s3-list
|
|
- exe: aws-s3-sync
|
|
|
|
commands:
|
|
# S3 버킷 listings
|
|
- command: AwsCli
|
|
id: aws-s3-list
|
|
param:
|
|
sub-command: s3 ls
|
|
args:
|
|
- "s3://my-bucket/"
|
|
|
|
# S3 디렉토리 동기화
|
|
- command: AwsCli
|
|
id: aws-s3-sync
|
|
param:
|
|
sub-command: s3 sync
|
|
args:
|
|
- "./dist/"
|
|
- "s3://my-bucket/release"
|