From 07cddf124990e83b4c1b8bdd86e8b2a087cbf8db Mon Sep 17 00:00:00 2001 From: Remi Deltombe Date: Wed, 3 May 2023 12:28:56 +0200 Subject: [PATCH] Fix path --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 1da8476..45e1325 100644 --- a/src/index.ts +++ b/src/index.ts @@ -43,7 +43,7 @@ async function run(): Promise { core.info(`Successfully setup Edge ${version}`); core.setOutput("edge-version", version); - core.setOutput("edge-path", result.root + result.bin); + core.setOutput("edge-path", result.root + "/" + result.bin); return result; })();