From 6246c4a659c155de0b1b5ded580117b1252764e7 Mon Sep 17 00:00:00 2001 From: actbit <57023457+actbit@users.noreply.github.com> Date: Sat, 28 Feb 2026 19:05:42 +0900 Subject: [PATCH] [fix] release --- .github/workflows/nuget-publish.yml | 8 ++++++++ 1 file changed, 8 insertions(+) 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