Skip to content

Commit 5d5222b

Browse files
committed
Update deploymentGroupName input in main.ts
1 parent bd5a5fb commit 5d5222b

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

dist/index.js

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ const LAMBDA_ALIAS = 'live'
1212
export async function run(): Promise<void> {
1313
try {
1414
const applicationName: string = core.getInput('applicationName')
15-
const deploymentGroupName: string = core.getInput('deploymentGroupName')
15+
const deploymentGroupName: string = core.getInput('deploymentGroupName', {
16+
required: false
17+
})
1618
const deploymentConfigName: string = core.getInput('deploymentConfigName')
1719
const description: string = core.getInput('description')
1820
const tagKey: string = core.getInput('tagKey')

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export type DeployApplicationInput = {
1111
}
1212
export type DeployInput = {
1313
applicationName: string
14-
deploymentGroupName: string
14+
deploymentGroupName?: string
1515
deploymentConfigName?: string
1616
autoRollbackConfiguration?: string
1717
revision: RevisionLocation

0 commit comments

Comments
 (0)