From a511f69a8804a861c524ab7c932172556b460c96 Mon Sep 17 00:00:00 2001 From: Martynas Bakanas Date: Wed, 22 Nov 2023 11:49:43 +0200 Subject: [PATCH] Fix deployer options setting --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 389b2c6..01515fa 100644 --- a/index.js +++ b/index.js @@ -117,7 +117,7 @@ async function dep() { try { let optionsArg = core.getInput('options') if (optionsArg !== '') { - for (let [key, value] in Object.entries(JSON.parse(optionsArg))) { + for (let [key, value] of Object.entries(JSON.parse(optionsArg))) { options.push('-o', `${key}=${value}`) } }