diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 4086593e6..54766d6c1 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -35,7 +35,11 @@ jobs: dotnet restore - name: Extract release notes id: extract-notes - run: echo "${{ github.event.release.body }}" > RELEASE_NOTES.md + run: | + echo "Release notes look best on GitHub: ${{ github.event.release.html_url }}" > RELEASE_NOTES.md + echo "" >> RELEASE_NOTES.md + echo "${{ github.event.release.body }}" >> RELEASE_NOTES.md + cat RELEASE_NOTES.md - name: Build run: | dotnet build --configuration Release --no-restore -p:Deterministic=true -p:BuildNumber=${{ github.run_number }}