From 2e5e9bbd3edcd3af0bb94a99f35c4d9b98288e81 Mon Sep 17 00:00:00 2001 From: Shakar <5h4k4r.b4kr@gmail.com> Date: Sun, 17 Sep 2023 14:34:00 +0300 Subject: [PATCH] Add path prefix Signed-off-by: Shakar <5h4k4r.b4kr@gmail.com> --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index fe12a4b..542dade 100644 --- a/index.js +++ b/index.js @@ -4,7 +4,7 @@ const fs = require('fs') const xml2js = require('xml2js') try { const label = core.getInput('label'); - const filePath = core.getInput('filePath'); + const filePath = `../../${core.getInput('filePath')}`; console.log(`Label: ${label}`) console.log(`File path: ${filePath}`)