From df27af76add1dc4b50ead8015976b5e96b177661 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Fri, 4 Jul 2025 11:45:03 +0200 Subject: [PATCH] fix(main): update script path to ensure correct resolution - Adjusts the script path to use a relative path for `.scripts` directory - Prevents potential issues with incorrect path resolution --- dist/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/main.js b/dist/main.js index 6aee5ab..e327223 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(actionPath, "scripts/detect-version-change.sh"); + const script = path.join(".", ".scripts/detect-version-change.sh"); run(script);