Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
75df670db7 | |||
4122b99eba
|
|||
5d42ea9ddb
|
@@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
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
|
## [0.2.2](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.2.1..v0.2.2) - 2025-06-14
|
||||||
|
|
||||||
### 🚀 Features
|
### 🚀 Features
|
||||||
|
@@ -95,7 +95,7 @@ if git rev-parse "v$VERSION" >/dev/null 2>&1; then
|
|||||||
echo "🔁 Tag v$VERSION already exists, skipping."
|
echo "🔁 Tag v$VERSION already exists, skipping."
|
||||||
else
|
else
|
||||||
echo "🏷️ Creating annotated tag v$VERSION"
|
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"
|
export GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"
|
||||||
git tag -a "v$VERSION" -F "$RELEASE_BODY_TMP" --cleanup=verbatim
|
git tag -a "v$VERSION" -F "$RELEASE_BODY_TMP" --cleanup=verbatim
|
||||||
git push origin "v$VERSION"
|
git push origin "v$VERSION"
|
||||||
|
Reference in New Issue
Block a user