Skip to content

Commit ee51ad6

Browse files
committed
fix(ci): use annotated tags so --follow-tags pushes them
Lightweight tags created by 'git tag' are ignored by --follow-tags, which caused the v1.5.0 tag to never reach the remote. Switch to 'git tag -a' to create annotated tags. Regenerate CHANGELOG with the v1.5.0 tag in place.
1 parent 2d8312d commit ee51ad6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ jobs:
5959
git config user.email "github-actions[bot]@users.noreply.github.com"
6060
git add package.json package-lock.json CHANGELOG.md
6161
git commit -m "chore(release): ${{ steps.version.outputs.version }}"
62-
git tag "${{ steps.version.outputs.version }}"
62+
git tag -a "${{ steps.version.outputs.version }}" -m "${{ steps.version.outputs.version }}"
6363
git push origin main --follow-tags

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [unreleased]
44

5+
### ⚙️ Miscellaneous Tasks
6+
7+
- _(ci)_ Simplify git-cliff config and upgrade GitHub Actions to v5
8+
9+
## [1.5.0] - 2026-03-23
10+
511
### 🚀 Features
612

713
- Improve tests
@@ -31,6 +37,7 @@
3137
- Migrate from eslint+prettier to oxlint+oxfmt
3238
- Bump version to 1.5.0
3339
- Update all dev dependencies to latest versions
40+
- _(release)_ V1.5.0
3441

3542
## [1.4.0] - 2025-10-26
3643

0 commit comments

Comments
 (0)