Skip to content

Commit ceaffba

Browse files
author
mguyenanastacio
committed
ci: use RELEASE_NOTES.md for release body instead of annotated tag notes
1 parent c1be3a2 commit ceaffba

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

.github/RELEASE_NOTES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## 修复
2+
3+
- **排序乱序**: 合并 Jackett 结果后重新排序,修复第 547+ 条开始排序混乱的问题
4+
- **排序切换**: 切换排序后翻页不再忽略新排序参数,对缓存全量重排
5+
- **DMHY 日期**: 修正 dmhy 布局变更后的日期/分类列索引,添加 regex 提取正确日期
6+
- **DMHY 排序**: sort_id 参数由硬编码改为根据排序模式动态设置(做种→1、大小→3、时间→0)
7+
- **标签芯片栏**: 首次搜索时关键词区不显示,改为在函数定义后初始化
8+
- **离线任务**: HTTP URL 提交前先尝试转为 magnet,防止云盘下载 .torrent 文件而非实际资源
9+
- **README**: 双语切换优化,全文更新

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,9 @@ jobs:
2424
env:
2525
GH_TOKEN: ${{ github.token }}
2626
run: |
27-
# Delete existing release if present (re-tagging scenario)
2827
gh release delete "${{ github.ref_name }}" --yes --cleanup-tag 2>/dev/null || true
29-
# Recreate with annotated tag notes
3028
gh release create "${{ github.ref_name }}" \
31-
--notes-from-tag \
29+
--notes-file ".github/RELEASE_NOTES.md" \
3230
--title "${{ github.ref_name }}" \
3331
--prerelease=${{ contains(github.ref_name, '-alpha') || contains(github.ref_name, '-beta') || contains(github.ref_name, '-rc') }}
3432

0 commit comments

Comments
 (0)