fix(supported-version): falsiness of custom_versions

This commit is contained in:
Damien Retzinger
2023-04-16 15:20:17 -04:00
parent 5c198049f7
commit c9b7f41525
2 changed files with 2 additions and 2 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -8,7 +8,7 @@ export async function run(): Promise<void> {
const kind = core.getInput("kind");
const customVersions = core.getInput("custom_versions");
validateKind(<any>kind, customVersions.split(','));
validateKind(<any>kind, customVersions ? customVersions.split(',') : undefined);
core.setOutput('matrix', getMatrixForKind(kind, customVersions));
}