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
This commit is contained in:
2025-07-04 11:45:03 +02:00
parent 6b4016177f
commit df27af76ad

2
dist/main.js vendored
View File

@@ -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);