ci/release: adapt release note generation to the new script
This commit is contained in:
parent
0129e9330f
commit
482e8f3aed
|
@ -25,8 +25,6 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Fetch Version
|
- name: Fetch Version
|
||||||
id: tag
|
id: tag
|
||||||
|
@ -45,7 +43,9 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Generate Release Notes
|
- name: Generate Release Notes
|
||||||
run: bash scripts/generate-release-notes.sh --version ${{ steps.tag.outputs.version }}
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
run: bash scripts/generate-release-notes.sh --debug --version ${{ steps.tag.outputs.version }}
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
id: create_release
|
id: create_release
|
||||||
|
@ -55,7 +55,6 @@ jobs:
|
||||||
tag: ${{ steps.tag.outputs.version }}
|
tag: ${{ steps.tag.outputs.version }}
|
||||||
draft: true
|
draft: true
|
||||||
bodyFile: release-notes.md
|
bodyFile: release-notes.md
|
||||||
generateReleaseNotes: true
|
|
||||||
allowUpdates: true
|
allowUpdates: true
|
||||||
|
|
||||||
build_linux:
|
build_linux:
|
||||||
|
|
Loading…
Reference in New Issue