Rather than base64 params into one env var, copy them linearly

pull/310/head
Frostebite 2021-12-20 20:27:45 +00:00
parent 2acc1423d3
commit 4cb2859ec4
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -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,

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -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,