From c02556093e9b11678950b3c9fb447a1c79cf72d2 Mon Sep 17 00:00:00 2001 From: n-ogawa Date: Tue, 21 Nov 2023 23:33:25 +0900 Subject: [PATCH] Fix --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 9233e2c2..d290f1d8 100644 --- a/src/main.ts +++ b/src/main.ts @@ -58,7 +58,7 @@ async function run(): Promise { const properties: string = core.getInput('properties') ?? '' if (properties) { - command += ` "--properties:${properties}"` + command += ` --properties:"${properties}"` } const workingDir: string = core.getInput('workingDirectory')