Compare commits
7 Commits
33c5c71923
...
v2.0.5
| Author | SHA1 | Date | |
|---|---|---|---|
| 466c1c4918 | |||
|
3d50c5cc8d
|
|||
|
a753d6aa3b
|
|||
| 7bba14fe49 | |||
|
c8628e7bd7
|
|||
|
df27af76ad
|
|||
| 6b4016177f |
18
CHANGELOG.md
18
CHANGELOG.md
@@ -2,6 +2,24 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [2.0.5](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v2.0.4..v2.0.5) - 2025-07-04
|
||||
|
||||
### 🐛 Bug Fixes
|
||||
|
||||
- *(script)* Correct path formatting in version detection script - ([a753d6a](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/a753d6aa3b45d4dab36e4ef56bbc71046eb032c9))
|
||||
|
||||
## [2.0.4](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v2.0.3..v2.0.4) - 2025-07-04
|
||||
|
||||
### 🐛 Bug Fixes
|
||||
|
||||
- *(main)* Update script path to ensure correct resolution - ([df27af7](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/df27af76add1dc4b50ead8015976b5e96b177661))
|
||||
|
||||
## [2.0.3](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v2.0.2..v2.0.3) - 2025-07-04
|
||||
|
||||
### 🚜 Refactor
|
||||
|
||||
- *(action)* Simplify composite action structure - ([8df31fb](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/8df31fb97ebd73e71b2f8a9dc925fe8a81192be3))
|
||||
|
||||
## [2.0.2](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v2.0.1..v2.0.2) - 2025-07-04
|
||||
|
||||
### 🚜 Refactor
|
||||
|
||||
2
dist/main.js
vendored
2
dist/main.js
vendored
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user