From db440db58a447df2817073f4f762fb512bc071cb Mon Sep 17 00:00:00 2001 From: Dmitry Sergeev Date: Tue, 28 Nov 2023 14:47:31 +0400 Subject: [PATCH] fix bug with option file --- js-action/src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js-action/src/index.js b/js-action/src/index.js index d251027..5bdd5f7 100644 --- a/js-action/src/index.js +++ b/js-action/src/index.js @@ -51,7 +51,7 @@ async function main() { let file = `--file ./docker/${image.name}/Dockerfile`; if ('file' in image) { - target = `--file ${image.file}`; + file = `--file ${image.file}`; } // build image