3 Commits

Author SHA1 Message Date
313ace34fe chore(changelog): update changelog for v0.4.3
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 5s
2025-06-29 12:18:09 +00:00
df2ba3b060 chore(version): bump version to 0.4.3
All checks were successful
Auto Changelog & Release / release (push) Successful in 8s
2025-06-29 14:18:02 +02:00
27ee1746db fix(script): use dynamic branch name for git push 2025-06-29 14:18:02 +02:00
3 changed files with 9 additions and 2 deletions

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## [0.4.3](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.4.2..v0.4.3) - 2025-06-29
### 🐛 Bug Fixes
- *(script)* Use dynamic branch name for git push - ([27ee174](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/27ee1746dbc7b2c6c1564a04c024337ff158a9c5))
## [0.4.2](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.4.1..v0.4.2) - 2025-06-29
### 🐛 Bug Fixes

View File

@@ -1 +1 @@
0.4.2
0.4.3

View File

@@ -52,6 +52,7 @@ VERSION_FILE="VERSION"
CHANGELOG_FILE="CHANGELOG.md"
CLIFF_CONFIG="cliff.toml"
RELEASE_BODY_TMP="$(mktemp)"
GIT_BRANCH="${GITHUB_REF##refs/heads/}"
# === Step 1: Read version ===
if [[ ! -f "$VERSION_FILE" ]]; then
@@ -87,7 +88,7 @@ if git diff --cached --quiet; then
else
echo "📝 Committing updated changelog"
git commit -m "chore(changelog): update changelog for v$VERSION"
git push origin main
git push origin "$GIT_BRANCH"
fi
# === Step 4: Create tag if necessary ===