Skip to content

Commit

Permalink
Add link to github view of release notes (#925)
Browse files Browse the repository at this point in the history
* Add link to github view of release notes

* Update .github/workflows/publish-release.yml
  • Loading branch information
ivarne authored Nov 26, 2024
1 parent 78cbeb0 commit 099c4a0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 099c4a0

Please sign in to comment.