Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
7e8c640f35 | |||
8aa3c1c8d2
|
|||
d3223c0956 | |||
0a562d4e02
|
@@ -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
|
||||
|
2
dist/main.js
vendored
2
dist/main.js
vendored
@@ -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
2
dist/post.js
vendored
@@ -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() {
|
||||
|
Reference in New Issue
Block a user