File tree 2 files changed +12
-67
lines changed
2 files changed +12
-67
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 94
94
needs : build
95
95
if : ${{ (github.event.inputs.create_release == 'true' || github.event_name == 'push') && github.event_name != 'pull_request' }}
96
96
steps :
97
+ - uses : actions/checkout@v4
98
+ - name : Generate a changelog
99
+ uses : orhun/git-cliff-action@v4
100
+ id : git-cliff
101
+ with :
102
+ config : cliff.toml
103
+ args : --latest
104
+ env :
105
+ OUTPUT : CHANGES.md
106
+ GITHUB_REPO : ${{ github.repository }}
97
107
- name : Download ISOs
98
108
uses : actions/download-artifact@v4
99
109
with :
@@ -113,5 +123,7 @@ jobs:
113
123
prerelease : ${{ needs.build.outputs.release_name != '' && contains(needs.build.outputs.release_name, 'a') }}
114
124
tag_name : ${{ needs.build.outputs.release_name }}
115
125
name : ${{ needs.build.outputs.release_name }}
126
+ body : ${{ steps.git-cliff.outputs.content }}
116
127
files : |
117
128
combined_isos/*.iso
129
+ CHANGES.md
You can’t perform that action at this time.
0 commit comments