3 Commits

Author SHA1 Message Date
75df670db7 chore(changelog): update changelog for v0.2.3
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 4s
2025-06-14 17:56:14 +00:00
4122b99eba chore(version): bump version to 0.2.3
All checks were successful
Auto Changelog & Release / release (push) Successful in 7s
2025-06-14 19:56:06 +02:00
5d42ea9ddb fix(script): adjust GIT_AUTHOR_DATE format for compatibility
- Updates GIT_AUTHOR_DATE to use Unix timestamp format for consistency
  and improved compatibility with systems parsing date formats.
2025-06-14 19:56:06 +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.
## [0.2.3](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.2.2..v0.2.3) - 2025-06-14
### 🐛 Bug Fixes
- *(script)* Adjust GIT_AUTHOR_DATE format for compatibility - ([5d42ea9](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/5d42ea9ddbfa4f151c83fc16c652d55618f2ee04))
## [0.2.2](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.2.1..v0.2.2) - 2025-06-14
### 🚀 Features

View File

@@ -1 +1 @@
0.2.2
0.2.3

View File

@@ -95,7 +95,7 @@ if git rev-parse "v$VERSION" >/dev/null 2>&1; then
echo "🔁 Tag v$VERSION already exists, skipping."
else
echo "🏷️ Creating annotated tag v$VERSION"
export GIT_AUTHOR_DATE="$(date --iso-8601=seconds)"
export GIT_AUTHOR_DATE="@$(date +%s)"
export GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"
git tag -a "v$VERSION" -F "$RELEASE_BODY_TMP" --cleanup=verbatim
git push origin "v$VERSION"