Include any message with error
parent
cdf5fcffbc
commit
7ca4c4ffd0
|
@ -899,7 +899,7 @@ class CloudRunnerOptions {
|
|||
return (CloudRunnerOptions.getInput(`useSharedLargePackages`) || 'false') === 'true';
|
||||
}
|
||||
static get useSharedBuilder() {
|
||||
return (CloudRunnerOptions.getInput(`useSharedBuilder`) || 'true') === 'true';
|
||||
return (CloudRunnerOptions.getInput(`useSharedBuilder`) || 'false') === 'true';
|
||||
}
|
||||
static get useLz4Compression() {
|
||||
return (CloudRunnerOptions.getInput(`useLz4Compression`) || 'false') === 'true';
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -254,7 +254,7 @@ class CloudRunnerOptions {
|
|||
}
|
||||
|
||||
public static get useSharedBuilder(): boolean {
|
||||
return (CloudRunnerOptions.getInput(`useSharedBuilder`) || 'true') === 'true';
|
||||
return (CloudRunnerOptions.getInput(`useSharedBuilder`) || 'false') === 'true';
|
||||
}
|
||||
|
||||
public static get useLz4Compression(): boolean {
|
||||
|
|
Loading…
Reference in New Issue