From 63dffdd9f8fbc818a9ce118a425a32affd151a3e Mon Sep 17 00:00:00 2001 From: Thorrak Date: Fri, 23 Apr 2021 10:11:44 -0400 Subject: [PATCH] Split parameter --- post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.js b/post.js index 063761a..163f531 100644 --- a/post.js +++ b/post.js @@ -4,7 +4,7 @@ const fs = require('fs'); try { const composeFile = core.getInput('compose-file'); - const downOptions = core.getInput('down-options'); + const downOptions = core.getInput('down-options').split(" "); if (!fs.existsSync(composeFile)) { console.log(`${composeFile} not exists`);