diff --git a/.github/actions/windows-patches/action.yaml b/.github/actions/windows-patches/action.yaml index 3c7dec67a..95d5688be 100644 --- a/.github/actions/windows-patches/action.yaml +++ b/.github/actions/windows-patches/action.yaml @@ -87,7 +87,10 @@ runs: run: | # Release notes are just the tag body on Windows Set-Location repo - git tag -l --format='%(contents:body)' ${{ inputs.tagName }} > "${{ github.workspace }}/notes.rst" + git tag -l --format='%(contents:subject)' ${{ inputs.tagName }} > "${{ github.workspace }}/notes.rst" + Write-Output "###################################################" >> "${{ github.workspace }}/notes.rst" + Write-Output "" >> "${{ github.workspace }}/notes.rst" + git tag -l --format='%(contents:body)' ${{ inputs.tagName }} >> "${{ github.workspace }}/notes.rst" - name: Run bouf shell: pwsh