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:
9797 cd infra/build
9898 ./debianize.sh
9999 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
100103
101104 - name : Build a changelog
102- run : ./infra/scripts/prepare_release_msg.sh >> ./changelog .md
105+ run : ./infra/scripts/prepare_release_msg.sh >> ./release .md
103106
104107 - name : Upload changelog artifact
105108 uses : actions/upload-artifact@v4
106109 with :
107110 name : changelog
108- path : ./changelog .md
111+ path : ./release .md
109112 retention-days : 0
110113
111114 - name : Create Release
@@ -116,7 +119,7 @@ jobs:
116119 with :
117120 tag_name : ${{ github.ref }}
118121 release_name : ${{ github.ref }}
119- body_path : ./changelog .md
122+ body_path : ./release .md
120123 draft : true
121124 prerelease : true
122125 - name : Upload Release Asset
You can’t perform that action at this time.
0 commit comments