Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
610ee118f3 | |||
d229bb4182
|
|||
967e4ac301
|
|||
f512d3ff6d
|
|||
7e8c640f35 | |||
8aa3c1c8d2
|
|||
d3223c0956 | |||
0a562d4e02
|
16
CHANGELOG.md
16
CHANGELOG.md
@@ -2,6 +2,22 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [2.0.8](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v2.0.7..v2.0.8) - 2025-07-04
|
||||
|
||||
### 🚀 Features
|
||||
|
||||
- *(scripts)* Add release flag to version change checks - ([967e4ac](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/967e4ac3014fe9273edc81e40e00a8acb324d294))
|
||||
|
||||
### 🐛 Bug Fixes
|
||||
|
||||
- *(scripts)* Remove redundant newline in output - ([f512d3f](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/f512d3ff6da44a83da279cf32484497bf3cc8f22))
|
||||
|
||||
## [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() {
|
||||
|
@@ -18,6 +18,7 @@ echo "Allow release from non-main branches: $ALLOW_NON_MAIN_RELEASE"
|
||||
if [[ "$ALLOW_NON_MAIN_RELEASE" != "true" && "$GIT_REF" != "refs/heads/main" ]]; then
|
||||
echo "🚫 Not on 'main' branch and non-main releases are disabled – skipping version check."
|
||||
echo "version_changed=false" >> "$GITHUB_OUTPUT"
|
||||
echo "release=false" >> "$GITHUB_OUTPUT"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
@@ -28,8 +29,10 @@ if git diff --name-only "$COMMIT_BEFORE" "$COMMIT_AFTER" | grep -q "^$VERSION_FI
|
||||
echo "✅ VERSION file was changed"
|
||||
echo "VERSION_CHANGED=true" >> "$GITHUB_ENV"
|
||||
echo "version_changed=true" >> "$GITHUB_OUTPUT"
|
||||
echo "release=true" >> "$GITHUB_OUTPUT"
|
||||
else
|
||||
echo "ℹ️ VERSION file not changed"
|
||||
echo "VERSION_CHANGED=false" >> "$GITHUB_ENV"
|
||||
echo "version_changed=false" >> "$GITHUB_OUTPUT"
|
||||
echo "release=false" >> "$GITHUB_OUTPUT"
|
||||
fi
|
||||
|
@@ -18,5 +18,4 @@ else
|
||||
fi
|
||||
|
||||
echo "version=${VERSION_LINE:-}" >> "$GITHUB_OUTPUT"
|
||||
echo "$VERSION_LINE"
|
||||
n
|
||||
echo "$VERSION_LINE"
|
Reference in New Issue
Block a user