Rather than base64 params into one env var, copy them linearly
parent
2acc1423d3
commit
4cb2859ec4
|
|
@ -2289,7 +2289,7 @@ class CloudRunnerState {
|
|||
value: CloudRunnerState.buildParams[element],
|
||||
});
|
||||
}
|
||||
const input = Object.getOwnPropertyNames(CloudRunnerState.buildParams);
|
||||
const input = Object.getOwnPropertyNames(CloudRunnerState);
|
||||
for (const element in input) {
|
||||
array.push({
|
||||
name: element,
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -137,7 +137,7 @@ export class CloudRunnerState {
|
|||
value: CloudRunnerState.buildParams[element],
|
||||
});
|
||||
}
|
||||
const input = Object.getOwnPropertyNames(CloudRunnerState.buildParams);
|
||||
const input = Object.getOwnPropertyNames(CloudRunnerState);
|
||||
for (const element in input) {
|
||||
array.push({
|
||||
name: element,
|
||||
|
|
|
|||
Loading…
Reference in New Issue