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
This commit is contained in:
2
dist/main.js
vendored
2
dist/main.js
vendored
@@ -16,7 +16,7 @@ function setEnv(key, value) {
|
|||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
const actionPath = process.env.GITHUB_ACTION_PATH || ".";
|
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);
|
run(script);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user