2 Commits

Author SHA1 Message Date
3d50c5cc8d chore(version): bump version to 2.0.5
All checks were successful
Auto Changelog & Release / release (push) Successful in 8s
2025-07-04 11:47:38 +02:00
a753d6aa3b 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
2025-07-04 11:47:38 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
2.0.4
2.0.5

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(".", ".scripts/detect-version-change.sh");
const script = path.join("./", "scripts/detect-version-change.sh");
run(script);