We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52078c9 commit b977e54Copy full SHA for b977e54
src/deploy.ts
@@ -254,14 +254,17 @@ export async function updateStack(
254
}
255
256
core.debug('Executing CloudFormation change set')
257
+ core.info(`About to execute change set: ${params.ChangeSetName} on stack: ${params.StackName}`)
258
await cfn.send(
259
new ExecuteChangeSetCommand({
260
ChangeSetName: params.ChangeSetName,
261
StackName: params.StackName
262
})
263
)
264
+ core.info('ExecuteChangeSetCommand completed successfully')
265
266
core.debug('Updating CloudFormation stack')
267
+ core.info('Starting waiter for stack operation completion')
268
await waitUntilStackOperationComplete(
269
{ client: cfn, maxWaitTime: 43200, minDelay: 10 },
270
{
0 commit comments