Fix: read git branch from project path git repo

pull/419/head
Frostebite 2022-08-11 04:55:54 +01:00
parent 0f688d08b8
commit 24b1c3dbbd
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -713,7 +713,7 @@ class CloudRunnerOptions {
return CloudRunnerOptions.getInput(`cloudRunnerTests`) || false; return CloudRunnerOptions.getInput(`cloudRunnerTests`) || false;
} }
static get watchCloudRunnerToEnd() { static get watchCloudRunnerToEnd() {
return CloudRunnerOptions.getInput(`watchCloudRunnerToEnd`) !== 'false' || true; return CloudRunnerOptions.getInput(`watchToEnd`) !== 'false' || true;
} }
static ToEnvVarFormat(input) { static ToEnvVarFormat(input) {
if (input.toUpperCase() === input) { if (input.toUpperCase() === input) {

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -158,7 +158,7 @@ class CloudRunnerOptions {
} }
static get watchCloudRunnerToEnd(): boolean { static get watchCloudRunnerToEnd(): boolean {
return CloudRunnerOptions.getInput(`watchCloudRunnerToEnd`) !== 'false' || true; return CloudRunnerOptions.getInput(`watchToEnd`) !== 'false' || true;
} }
public static ToEnvVarFormat(input: string) { public static ToEnvVarFormat(input: string) {