mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-08 19:46:41 +00:00
fix(supported-version): falsiness of custom_versions
This commit is contained in:
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user