-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
44 lines (42 loc) · 1.13 KB
/
action.yml
File metadata and controls
44 lines (42 loc) · 1.13 KB
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
38
39
40
41
42
43
44
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
name: "ECSDeployer Action"
description: "GitHub Action for ECSDeployer, a tool to easily deploy applications to AWS ECS Fargate"
author: "ECSDeployer"
branding:
color: "blue"
icon: "cloud"
inputs:
ecsdeployer-version:
description: "The version of ECSDeployer to run using"
default: "latest"
required: false
image:
description: "Value for --image"
required: false
tag:
description: "Value for --tag"
required: false
app-version:
description: "Value for --app-version"
required: false
extra-args:
description: "Additional arguments to pass to the deployer command"
required: false
config:
description: "Deployment YML file for the project"
required: false
workdir:
description: "Working directory (below repository root)"
default: "."
required: false
timeout:
description: "Override the default timeout"
default: "90m"
required: false
install-only:
description: "Just install ECSDeployer"
default: "false"
required: false
runs:
using: "node24"
main: "dist/index.js"