3 Commits

Author SHA1 Message Date
7bba14fe49 chore(changelog): update changelog for v2.0.4
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 5s
2025-07-04 09:45:21 +00:00
c8628e7bd7 chore(version): bump version to 2.0.4
All checks were successful
Auto Changelog & Release / release (push) Successful in 8s
2025-07-04 11:45:14 +02:00
df27af76ad fix(main): update script path to ensure correct resolution
- Adjusts the script path to use a relative path for `.scripts` directory
- Prevents potential issues with incorrect path resolution
2025-07-04 11:45:14 +02:00
3 changed files with 8 additions and 2 deletions

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## [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

View File

@@ -1 +1 @@
2.0.3
2.0.4

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