-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
37 lines (37 loc) · 1.01 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# action.yml
name: 'AWS ECS deploy'
description: 'Github action using fabfuel/ecs-deploy for ECS'
branding:
icon: 'cloud'
color: 'orange'
inputs:
ecs_cluster:
description: 'The ECS cluster name where to deploy'
required: true
ecs_service:
description: 'The ECS service name where to deploy'
required: true
ecs_container_name:
description: 'The container name to be updated'
required: true
app_repo_url:
description: 'The app docker repository URL'
required: true
app_version:
description: 'The docker image tag to deploy'
required: true
aws_region:
description: 'The aws region'
required: true
aws_access_key_id:
description: 'The aws access key id'
required: true
aws_secret_access_key:
description: 'The aws secret access key'
required: true
outputs:
result:
description: 'Output provided by ecs deploy tool'
runs:
using: 'docker'
image: 'Dockerfile'