mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-25 01:41:05 -05:00
Removed default values for nested inputs
This commit is contained in:
parent
b6dd854b36
commit
7f684f107c
1 changed files with 4 additions and 1 deletions
|
@ -46,7 +46,10 @@ function processInputs(inputs: Record<string, ActionInput>) {
|
||||||
|
|
||||||
for (const publisher of publishers) {
|
for (const publisher of publishers) {
|
||||||
for (const [name, input] of nestedInputs) {
|
for (const [name, input] of nestedInputs) {
|
||||||
inputs[`${publisher}-${name}`] = { ...input };
|
inputs[`${publisher}-${name}`] = {
|
||||||
|
...input,
|
||||||
|
default: "${undefined}"
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue