We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1172179 commit 598e8c4Copy full SHA for 598e8c4
1 file changed
.github/workflows/blank.yml
@@ -26,12 +26,26 @@ jobs:
26
README.md \
27
-x "folder2/exclude-this-file.txt"
28
29
+ - name: 生成更新日志
30
+ id: changelog
31
+ uses: mikepenz/release-changelog-builder-action@v4
32
+ env:
33
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
+
35
- name: 创建 Release 并上传资源
36
uses: softprops/action-gh-release@v2
37
with:
38
tag_name: ${{ env.TAG_NAME }}
39
name: Release ${{ env.TAG_NAME }}
- body: "自动生成的 Release 版本:${{ env.TAG_NAME }}"
40
+ body: |
41
+ ## 🚀 版本:${{ env.TAG_NAME }}
42
43
+ ### 📝 更改
44
+ ${{ steps.changelog.outputs.changelog }}
45
46
+ ---
47
48
+ *此版本由 GitHub Actions 自动生成*
49
draft: false
50
prerelease: false
51
files: COM3D2_Scripts_901-${{ env.TAG_NAME }}.zip
0 commit comments