cleanup local pipeline, log aws formation

pull/479/head
Frostebite 2022-12-15 00:43:10 +00:00
parent e3b4e2a0e7
commit 65200e4abb
4 changed files with 11 additions and 4 deletions

View File

@ -130,7 +130,7 @@ jobs:
cloudRunnerCluster: ${{ matrix.cloudRunnerCluster }}
githubChecks: true
asyncCloudRunner: true
watchCloudRunnerToEnd: false
watchToEnd: false
localBuildTests:
name: Local Build Target Tests
runs-on: ubuntu-latest

5
dist/index.js vendored
View File

@ -862,7 +862,10 @@ class CloudRunnerOptions {
return CloudRunnerOptions.getInput(`cloudRunnerDebugEnv`) || false;
}
static get watchCloudRunnerToEnd() {
return CloudRunnerOptions.getInput(`watchToEnd`) || !CloudRunnerOptions.asyncCloudRunner;
if (CloudRunnerOptions.asyncCloudRunner) {
return false;
}
return CloudRunnerOptions.getInput(`watchToEnd`) || true;
}
static get asyncCloudRunner() {
return (CloudRunnerOptions.getInput('asyncCloudRunner') || `false`) === `true` || false;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -235,7 +235,11 @@ class CloudRunnerOptions {
}
static get watchCloudRunnerToEnd(): boolean {
return CloudRunnerOptions.getInput(`watchToEnd`) || !CloudRunnerOptions.asyncCloudRunner;
if (CloudRunnerOptions.asyncCloudRunner) {
return false;
}
return CloudRunnerOptions.getInput(`watchToEnd`) || true;
}
static get asyncCloudRunner(): boolean {