From a753d6aa3b45d4dab36e4ef56bbc71046eb032c9 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Fri, 4 Jul 2025 11:47:26 +0200 Subject: [PATCH] fix(script): correct path formatting in version detection script - Updates script path to use consistent directory structure - Resolves potential issues with path interpretation across environments --- dist/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/main.js b/dist/main.js index e327223..a9dfd3c 100644 --- a/dist/main.js +++ b/dist/main.js @@ -16,7 +16,7 @@ function setEnv(key, value) { function main() { const actionPath = process.env.GITHUB_ACTION_PATH || "."; - const script = path.join(".", ".scripts/detect-version-change.sh"); + const script = path.join("./", "scripts/detect-version-change.sh"); run(script);