oto/apps/runner/assets/yaml/sample/19_awscli.yaml
toki 86afabb3eb refactor(runner): 런타임 패키지를 앱 하위로 이동한다
독립 control plane 구성을 위해 기존 Dart CLI/runtime을 runner 앱 경계로 옮기고, 후속 client/core/root 작업을 같은 마일스톤 task group에 연결한다.
2026-06-05 06:34:45 +09:00

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"