Skip to content

Commit

Permalink
chore: Generate release notes for GitHub (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysparry authored Dec 7, 2024
1 parent 4997597 commit d88e421
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/nuget-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,16 @@ jobs:
- name: Pack
run: just pack
if: startsWith(github.ref, 'refs/tags/v')
- name: Create Release Notes
run: just release-notes
if: startsWith(github.ref, 'refs/tags/v')
- name: Create a release with the NuGet Package
uses: softprops/action-gh-release@v2
with:
files: '**/*.nupkg'
body_path: artifacts/RELEASE-NOTES.md
files: |
artifacts/*.nupkg
artifacts/*.snupkg
if: startsWith(github.ref, 'refs/tags/v')
- name: Load NuGet API Key
uses: 1password/load-secrets-action@v2
Expand Down

0 comments on commit d88e421

Please sign in to comment.