File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -97,15 +97,18 @@ jobs:
97
97
cd infra/build
98
98
./debianize.sh
99
99
zip --junk-paths debian.zip *.deb; mv debian.zip /tmp
100
+
101
+ - name : Build Release notes
102
+ run : git tag -n10 --list "${{ github.ref }}" >> ./release.md
100
103
101
104
- name : Build a changelog
102
- run : ./infra/scripts/prepare_release_msg.sh >> ./changelog .md
105
+ run : ./infra/scripts/prepare_release_msg.sh >> ./release .md
103
106
104
107
- name : Upload changelog artifact
105
108
uses : actions/upload-artifact@v4
106
109
with :
107
110
name : changelog
108
- path : ./changelog .md
111
+ path : ./release .md
109
112
retention-days : 0
110
113
111
114
- name : Create Release
@@ -116,7 +119,7 @@ jobs:
116
119
with :
117
120
tag_name : ${{ github.ref }}
118
121
release_name : ${{ github.ref }}
119
- body_path : ./changelog .md
122
+ body_path : ./release .md
120
123
draft : true
121
124
prerelease : true
122
125
- name : Upload Release Asset
You can’t perform that action at this time.
0 commit comments