logging improvement

pull/289/head
Frostebite 2021-08-15 16:00:38 +00:00 committed by GitHub
parent e8405a637a
commit 8770e0d21e
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -1056,7 +1056,7 @@ class AWSBuildEnvironment {
return yield CF.describeStacks(describeStackInput).promise();
});
if (!stackExists) {
core.info('stack does not exist');
core.info(`${baseStackName} stack does not exist`);
yield CF.createStack(createStackInput).promise();
core.info(`created stack (version: ${hash})`);
}

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -265,7 +265,7 @@ class AWSBuildEnvironment implements RemoteBuilderProviderInterface {
};
if (!stackExists) {
core.info('stack does not exist');
core.info(`${baseStackName} stack does not exist`);
await CF.createStack(createStackInput).promise();
core.info(`created stack (version: ${hash})`);
}