Adding ; as delimiter

This commit is contained in:
Ganeshrockz
2021-04-15 11:35:18 +05:30
parent a58ad23e7f
commit 2577009bcb
3 changed files with 23 additions and 2 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ export async function run() {
namespace = 'default';
}
let action = core.getInput('action');
let manifests = manifestsInput.split(/[\n,]+/).filter(manifest => manifest.trim().length > 0);
let manifests = manifestsInput.split(/[\n,;]+/).filter(manifest => manifest.trim().length > 0);
if (manifests.length > 0) {
manifests = manifests.map(manifest => {