cleanup local pipeline, log aws formation

pull/479/head
Frostebite 2022-12-14 21:39:36 +00:00
parent 3e33b35a8a
commit 3eba88c4d6
3 changed files with 4 additions and 4 deletions

2
dist/index.js vendored
View File

@ -865,7 +865,7 @@ class CloudRunnerOptions {
return ((CloudRunnerOptions.getInput(`watchToEnd`) || CloudRunnerOptions.asyncCloudRunner !== true || true) !== 'false');
}
static get asyncCloudRunner() {
return CloudRunnerOptions.getInput('asyncCloudRunner') || false;
return CloudRunnerOptions.getInput('asyncCloudRunner') === 'true' || false;
}
static get useSharedLargePackages() {
return (CloudRunnerOptions.getInput(`useSharedLargePackages`) || 'false') === 'true';

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -240,8 +240,8 @@ class CloudRunnerOptions {
);
}
static get asyncCloudRunner() {
return CloudRunnerOptions.getInput('asyncCloudRunner') || false;
static get asyncCloudRunner(): boolean {
return CloudRunnerOptions.getInput('asyncCloudRunner') === 'true' || false;
}
public static get useSharedLargePackages(): boolean {