diff --git a/.github/workflows/nuget-publish.yml b/.github/workflows/nuget-publish.yml index 7053634..5d47dee 100644 --- a/.github/workflows/nuget-publish.yml +++ b/.github/workflows/nuget-publish.yml @@ -85,3 +85,11 @@ jobs: git config user.email "github-actions[bot]@users.noreply.github.com" git tag v${{ steps.version.outputs.version }} git push origin v${{ steps.version.outputs.version }} + + - name: Create GitHub Release + uses: softprops/action-gh-release@v2 + with: + tag_name: v${{ steps.version.outputs.version }} + name: v${{ steps.version.outputs.version }} + files: ./nupkg/*.nupkg + generate_release_notes: true