diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml
new file mode 100644
index 0000000..fcf3873
--- /dev/null
+++ b/.github/workflows/release-tag.yml
@@ -0,0 +1,23 @@
+name: Release
+
+on:
+ push:
+ tags:
+ - 'v*' # Push events to matching v*, i.e. v1.0.0
+
+jobs:
+ release:
+ if: github.repository == 'Charles7c/continew-admin-ui'
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@master
+ - name: Create Release for Tag
+ id: release_tag
+ uses: yyx990803/release-tag@master
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ with:
+ tag_name: ${{ github.ref }}
+ body: |
+ 详情请参阅 [CHANGELOG.md](https://github.com/${{ github.repository }}/blob/dev/CHANGELOG.md) 。
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c71772c..e2eda4e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,18 @@
+## v2.4.0 (2024-02-16)
+
+### ✨ 新特性
+
+* 系统日志详情新增 traceId 链路号显示 ([7359823](https://github.com/Charles7c/continew-admin-ui/commit/735982373a13889340970623bce544dafc574cdb))
+
+### 💎 功能优化
+
+- 取消用户默认密码,改为表单填写密码 ([e519d74](https://github.com/Charles7c/continew-admin-ui/commit/e519d746c92596d0b4a568aef26218b8c4c1e4f4)) ([dd1127e](https://github.com/Charles7c/continew-admin-ui/commit/dd1127e2b8ddfad70e67fca5502505fb269236cc))
+- 部分 ID 列 => 序号列 ([678aa92](https://github.com/Charles7c/continew-admin-ui/commit/678aa92457dc172a300e78e9523ab0fe50715947))
+
+### 🐛 问题修复
+
+- 修复暗黑模式下返回到登录页面时的部分样式错乱 ([65e564d](https://github.com/Charles7c/continew-admin-ui/commit/65e564dc67c06a18bc543d032d430718ae620cb9))
+
## v2.3.0 (2024-01-21)
### ✨ 新特性
diff --git a/README.md b/README.md
index 77aa65f..d783776 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
-
+
diff --git a/package.json b/package.json
index 77e1cfe..e9e9044 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "continew-admin-ui",
"description": "ContiNew Admin(Continue New Admin)持续迭代优化的前后端分离中后台管理系统框架,开箱即用,持续提供舒适的开发体验。",
- "version": "2.4.0-SNAPSHOT",
+ "version": "2.4.0",
"private": true,
"author": "Charles7c",
"license": "Apache-2.0",