Skip to content

Commit 88106fb

Browse files
authored
Update blank.yml
1 parent 7d78f88 commit 88106fb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/blank.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)