4 Commits

Author SHA1 Message Date
7e8c640f35 chore(changelog): update changelog for v2.0.7
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 6s
2025-07-04 09:51:59 +00:00
8aa3c1c8d2 chore(version): bump version to 2.0.7
All checks were successful
Auto Changelog & Release / release (push) Successful in 10s
2025-07-04 11:51:49 +02:00
d3223c0956 chore(changelog): update unreleased changelog 2025-07-04 09:51:46 +00:00
0a562d4e02 fix(path): correct script directory resolution
All checks were successful
Auto Changelog & Release / release (push) Successful in 6s
- Adjusts path resolution logic to correctly reference parent directory
- Ensures accurate script execution paths across modules
2025-07-04 11:51:39 +02:00
4 changed files with 9 additions and 3 deletions

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## [2.0.7](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v2.0.6..v2.0.7) - 2025-07-04
### 🐛 Bug Fixes
- *(path)* Correct script directory resolution - ([0a562d4](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/0a562d4e029193c4e39926d1ff220a6a37a6e049))
## [2.0.6](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v2.0.5..v2.0.6) - 2025-07-04
### 🚜 Refactor

View File

@@ -1 +1 @@
2.0.6
2.0.7

2
dist/main.js vendored
View File

@@ -15,7 +15,7 @@ function setEnv(key, value) {
}
function main() {
const script = path.join(__dirname, "scripts", "detect-version-change.sh");
const script = path.join(__dirname, "..", "scripts", "detect-version-change.sh");
run(script);

2
dist/post.js vendored
View File

@@ -11,7 +11,7 @@ function run(script, args = []) {
}
function scriptPath(...segments) {
return path.join(__dirname, "scripts", ...segments);
return path.join(__dirname, "..", "scripts", ...segments);
}
function main() {